fastapi-test / app /main.py
Liuli's picture
init
a2f32df
raw
history blame
116 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
async def root():
return {"message": "Hello World"}