Files
fastapi__fastapi/docs_src/first_steps/tutorial003_py39.py
T

9 lines
111 B
Python
Raw Normal View History

2018-12-13 21:05:15 +04:00
from fastapi import FastAPI
app = FastAPI()
2018-12-13 21:05:15 +04:00
@app.get("/")
def root():
2018-12-13 21:05:15 +04:00
return {"message": "Hello World"}