ea221db3c7
Add GET /api/v1/dashboards/summary (24h events, open problems, hosts, severity breakdown, recent events) and Vue /dashboard page.
12 lines
379 B
Python
12 lines
379 B
Python
from fastapi import APIRouter
|
|
|
|
from app.api.v1 import auth, dashboards, events, health, hosts, problems
|
|
|
|
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)
|