repo setup

This commit is contained in:
Nicola Malizia
2025-10-10 17:41:56 +02:00
commit 787adc2ba6
25 changed files with 3428 additions and 0 deletions

Binary file not shown.

View File

@@ -0,0 +1,11 @@
from fastapi import FastAPI
app = FastAPI()
@app.get("/api")
def read_root():
return {"message": "Ciao dal backend FastAPI!"}
@app.get("/api/health")
def health_check():
return {"status": "ok"}