mirror of
https://github.com/fastapi/fastapi.git
synced 2026-02-16 01:01:05 -05:00
9 lines
112 B
Python
9 lines
112 B
Python
from fastapi import FastAPI
|
|
|
|
app = FastAPI()
|
|
|
|
|
|
@app.get("/")
|
|
async def root():
|
|
return {"message": "Tomato"}
|