mirror of
https://github.com/fastapi/fastapi.git
synced 2026-03-03 14:37:11 -05:00
9 lines
139 B
Python
9 lines
139 B
Python
from fastapi import FastAPI
|
|
|
|
my_awesome_api = FastAPI()
|
|
|
|
|
|
@my_awesome_api.get("/")
|
|
async def root():
|
|
return {"message": "Hello World"}
|