rayymaxx's picture
Update app
b66d06d verified
raw
history blame
165 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/health")
def health():
return {"ok": True}
@app.get("/")
def root():
return {"Minimal code running"}