3053058cdf
Co-authored-by: Cursor <cursoragent@cursor.com>
16 lines
577 B
Python
16 lines
577 B
Python
from fastapi import APIRouter
|
|
|
|
from app.api.v1 import auth, dashboards, events, health, hosts, problems, settings, stream, system, users
|
|
|
|
api_router = APIRouter()
|
|
api_router.include_router(health.router)
|
|
api_router.include_router(auth.router)
|
|
api_router.include_router(events.router)
|
|
api_router.include_router(hosts.router)
|
|
api_router.include_router(problems.router)
|
|
api_router.include_router(dashboards.router)
|
|
api_router.include_router(settings.router)
|
|
api_router.include_router(system.router)
|
|
api_router.include_router(users.router)
|
|
api_router.include_router(stream.router)
|