Build lightweight AI agent admin

This commit is contained in:
Codex
2026-06-08 18:14:59 +08:00
commit e164840f43
2530 changed files with 435693 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Scheduler Router - 定时任务模块路由
"""
from fastapi import APIRouter
from scheduler.api import router as scheduler_router
router = APIRouter()
# 注册调度器路由
router.include_router(scheduler_router)