Files
security-alert-center/backend/app/api/v1/router.py
T
PTah 69a232d08a feat: backend ingest API, Docker Compose, Ubuntu install guide
- FastAPI: POST /api/v1/events, GET /health, JSON Schema validation

- PostgreSQL models, Alembic migration, bootstrap API key

- deploy/docker-compose.yml, .env.example

- docs/install-ubuntu-24.04.md, updated work-plan (agents first)
2026-05-26 20:21:31 +10:00

8 lines
177 B
Python

from fastapi import APIRouter
from app.api.v1 import events, health
api_router = APIRouter()
api_router.include_router(health.router)
api_router.include_router(events.router)