assd / app.py
asv7j's picture
Upload 2 files
ab024e5 verified
raw
history blame
115 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root():
return {"Hello": "World!"}