mirror of
https://github.com/stardrophere/InsightRadar.git
synced 2026-06-06 01:57:51 +08:00
8 lines
219 B
Python
8 lines
219 B
Python
# 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=["信息源管理"]) |