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

9 lines
139 B
Python

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