cindyy287's picture
Upload 12 files
e6da2e3 verified
raw
history blame contribute delete
107 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def root():
return {"status": "ok"}