mirror of
https://github.com/mgeeky/decode-spam-headers.git
synced 2026-02-22 13:33:30 +01:00
9 lines
155 B
Python
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"}
|