fix: 完善插件恢复与运行态收敛 (#6376)

This commit is contained in:
InfinityPacer
2026-08-21 18:09:29 +08:00
committed by GitHub
parent 2d80f9f04f
commit b9bbc8913c
32 changed files with 1823 additions and 163 deletions
+5 -3
View File
@@ -1,3 +1,5 @@
from concurrent.futures import Future
from app.application.commands import register_command_class
from app.command import Command
@@ -19,8 +21,8 @@ def stop_command():
pass
def restart_command():
def restart_command() -> Future:
"""
命令
命令并返回完成信号。
"""
Command().init_commands()
return Command().init_commands()