This commit is contained in:
stardrophere
2026-03-09 18:13:35 +08:00
parent 3c57dd0cce
commit 5b541bbea3
11 changed files with 464 additions and 75 deletions
+8
View File
@@ -0,0 +1,8 @@
# app/api/router.py
from fastapi import APIRouter
from app.api.endpoints import sources
api_router = APIRouter()
# 信息源管理
api_router.include_router(sources.router, prefix="/sources", tags=["信息源管理"])