Files
fastapi/docs/src/first_steps/tutorial001.py
2018-12-21 16:22:33 +04:00

9 lines
117 B
Python

from fastapi import FastAPI
app = FastAPI()
@app.get("/")
async def root():
return {"message": "Hello World"}