mirror of
https://github.com/fawney19/Aether.git
synced 2026-01-10 11:42:27 +08:00
11 lines
194 B
Python
11 lines
194 B
Python
"""User monitoring routers."""
|
|
|
|
from fastapi import APIRouter
|
|
|
|
from .user import router as monitoring_router
|
|
|
|
router = APIRouter()
|
|
router.include_router(monitoring_router)
|
|
|
|
__all__ = ["router"]
|