Files
security-alert-center/backend/app/models/__init__.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

6 lines
145 B
Python

from app.models.api_key import ApiKey
from app.models.event import Event
from app.models.host import Host
__all__ = ["ApiKey", "Event", "Host"]