Pipertts / code /app.py
Gregniuki's picture
Upload app.py
617711b
raw
history blame
113 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
async def read_root():
return {"Hello": "World!"}