fastapi/docs_src/first_steps/tutorial003.py

9 lines
111 B
Python

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