Initial monitor service

This commit is contained in:
AppFactory Bot
2026-05-29 11:43:51 +02:00
commit 939dbb26ae
3 changed files with 22 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
from fastapi import FastAPI
app = FastAPI(title="AppFactory Monitor")
@app.get("/health")
def health():
return {
"status": "ok"
}