feat: 添加历史记录相关端口

This commit is contained in:
DLmaster361
2025-08-14 16:31:49 +08:00
parent 1f5cf3acff
commit 2326cfcaa3
5 changed files with 146 additions and 8 deletions

View File

@@ -28,6 +28,7 @@ from .scripts import router as scripts_router
from .plan import router as plan_router
from .queue import router as queue_router
from .dispatch import router as dispatch_router
from .history import router as history_router
from .setting import router as setting_router
__all__ = [
@@ -36,5 +37,6 @@ __all__ = [
"plan_router",
"queue_router",
"dispatch_router",
"history_router",
"setting_router",
]