mirror of
https://github.com/fawney19/Aether.git
synced 2026-01-10 19:52:27 +08:00
25 lines
596 B
Python
25 lines
596 B
Python
|
|
"""Endpoint management API routers."""
|
||
|
|
|
||
|
|
from fastapi import APIRouter
|
||
|
|
|
||
|
|
from .concurrency import router as concurrency_router
|
||
|
|
from .health import router as health_router
|
||
|
|
from .keys import router as keys_router
|
||
|
|
from .routes import router as routes_router
|
||
|
|
|
||
|
|
router = APIRouter(prefix="/api/admin/endpoints", tags=["Endpoint Management"])
|
||
|
|
|
||
|
|
# Endpoint CRUD
|
||
|
|
router.include_router(routes_router)
|
||
|
|
|
||
|
|
# Endpoint Keys management
|
||
|
|
router.include_router(keys_router)
|
||
|
|
|
||
|
|
# Health monitoring
|
||
|
|
router.include_router(health_router)
|
||
|
|
|
||
|
|
# Concurrency control
|
||
|
|
router.include_router(concurrency_router)
|
||
|
|
|
||
|
|
__all__ = ["router"]
|