mirror of
https://github.com/fastapi/fastapi.git
synced 2026-09-14 13:36:21 +08:00
2fd28434dd
Co-authored-by: Sebastián Ramírez <tiangolo@gmail.com>
9 lines
112 B
Python
9 lines
112 B
Python
from fastapi import FastAPI
|
|
|
|
app = FastAPI()
|
|
|
|
|
|
@app.get("/")
|
|
async def root():
|
|
return {"message": "Tomato"}
|