Files
2025-12-04 11:54:41 +01:00

12 lines
184 B
Python

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