File size: 94 Bytes
0b86755
 
 
 
 
 
1
2
3
4
5
6
from fastapi import FastAPI
app = FastAPI()

@app.get("/")
def root():
    return {"ok": True}