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