HelloHF / app.py
Haride's picture
Update app.py
6f69689 verified
raw
history blame contribute delete
255 Bytes
from fastapi import FastAPI, Response
app = FastAPI()
@app.get("/")
def greet_json():
return {"Hello": "World!"}
@app.get("/health")
def health():
return {"ok": True}
@app.head("/health")
def health_head():
return Response(status_code=200)