MAESTRO: scaffold backend fastapi app

This commit is contained in:
Mariusz Banach
2026-02-17 22:50:34 +01:00
parent 7a3b958904
commit 9f58c3218c
11 changed files with 140 additions and 0 deletions

1
backend/app/__init__.py Normal file
View File

@@ -0,0 +1 @@
"""Backend application package."""

Binary file not shown.

Binary file not shown.

8
backend/app/main.py Normal file
View File

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