mirror of
https://github.com/azaion/autopilot.git
synced 2026-04-22 22:16:33 +00:00
9 lines
114 B
Python
9 lines
114 B
Python
from fastapi import FastAPI
|
|
|
|
app = FastAPI()
|
|
|
|
|
|
@app.get("/health")
|
|
def health():
|
|
return {"status": "healthy"}
|