fastapi_dummy / main.py
jz-18's picture
Update main.py
8de29d3 verified
raw
history blame
115 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root():
return {"Hello": "fast api demo!"}