Pudding48's picture
Update app.py
c760d45 verified
raw
history blame
122 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def health_check():
return {"status": "FastAPI is alive!"}