test / app.py
Jaykay73's picture
Create app.py
0b86755 verified
raw
history blame contribute delete
94 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def root():
return {"ok": True}