first commit

This commit is contained in:
2025-12-04 11:54:41 +01:00
commit 9b2db18fa3
13 changed files with 868 additions and 0 deletions

0
app/__init__.py Normal file
View File

11
app/main.py Normal file
View File

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