test / main.py
mitudesk's picture
Rename app.py to main.py
bd86802
raw
history blame
107 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root():
return {"Hello": "World!"}