feat: Problems API, ingest hook, and UI

This commit is contained in:
2026-05-27 11:24:19 +10:00
parent b19cdf2b47
commit 5fce00faae
14 changed files with 451 additions and 10 deletions
+2 -1
View File
@@ -1,9 +1,10 @@
from fastapi import APIRouter
from app.api.v1 import auth, events, health, hosts
from app.api.v1 import auth, 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)