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

12 lines
242 B
Python

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