mirror of
https://github.com/fastapi/fastapi.git
synced 2026-01-21 04:19:55 -05:00
11 lines
203 B
Python
11 lines
203 B
Python
from fastapi import FastAPI
|
|
|
|
app = FastAPI(
|
|
title="My Super Project", version="2.5.0", openapi_url="/api/v1/openapi.json"
|
|
)
|
|
|
|
|
|
@app.get("/items/")
|
|
async def read_items():
|
|
return [{"name": "Foo"}]
|