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