1
0
forked from bot/app

feat: 对部分消息回复用markdown进行了重新排版

This commit is contained in:
2024-03-20 22:30:52 +08:00
parent 2b8cb2afb6
commit 14d9f041ce
7 changed files with 51 additions and 10 deletions

View File

@ -0,0 +1,10 @@
import pip
def install(plugin_name) -> bool:
try:
pip.main(['install', plugin_name])
return True
except Exception as e:
print(e)
return False