mirror of
https://github.com/fawney19/Aether.git
synced 2026-01-11 12:08:30 +08:00
15 lines
349 B
Python
15 lines
349 B
Python
"""Admin monitoring router合集。"""
|
|
|
|
from fastapi import APIRouter
|
|
|
|
from .audit import router as audit_router
|
|
from .cache import router as cache_router
|
|
from .trace import router as trace_router
|
|
|
|
router = APIRouter()
|
|
router.include_router(audit_router)
|
|
router.include_router(cache_router)
|
|
router.include_router(trace_router)
|
|
|
|
__all__ = ["router"]
|