Files
fastapi/docs/tutorial/src/first-steps/tutorial003.py
2018-12-14 14:27:02 +04:00

9 lines
111 B
Python

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