Update index.py

This commit is contained in:
midoks 2023-07-03 22:12:55 +08:00
parent 569511d321
commit 185e73c26a
1 changed files with 6 additions and 0 deletions

View File

@ -171,6 +171,12 @@ def reload():
content = mw.readFile(tgbot_tpl)
mw.writeFile(tgbot_dst, content)
tgpush_tpl = getPluginDir() + '/startup/tgpush.py'
tgpush_dst = getServerDir() + '/tgpush.py'
content = mw.readFile(tgpush_tpl)
mw.writeFile(tgpush_dst, content)
ext_src = getPluginDir() + '/startup/extend'
ext_dst = getServerDir()