Files
mgeeky-decode-spam-headers/backend/app/main.py
2026-02-17 22:50:34 +01:00

9 lines
155 B
Python

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