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