mirror of
https://github.com/mgeeky/decode-spam-headers.git
synced 2026-02-22 05:23:31 +01:00
12 lines
242 B
Python
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"}
|