Files
appfactory-monitor/app/main.py
T
2026-05-29 11:43:51 +02:00

10 lines
148 B
Python

from fastapi import FastAPI
app = FastAPI(title="AppFactory Monitor")
@app.get("/health")
def health():
return {
"status": "ok"
}