Files
mgeeky-decode-spam-headers/backend/app/main.py
2026-02-18 01:54:58 +01:00

14 lines
337 B
Python

from fastapi import FastAPI
from app.routers.analysis import router as analysis_router
from app.routers.tests import router as tests_router
app = FastAPI(title="Web Header Analyzer API")
app.include_router(analysis_router)
app.include_router(tests_router)
@app.get("/")
def read_root() -> dict[str, str]:
return {"status": "ok"}