gaet's picture
`dev`: toy example to explore spaces.
b962467
raw
history blame contribute delete
105 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root():
return {"Hello": "World"}