mirror of
https://github.com/fastapi/fastapi.git
synced 2026-01-24 05:51:04 -05:00
10 lines
199 B
Python
10 lines
199 B
Python
from fastapi import FastAPI
|
|
from starlette.responses import UJSONResponse
|
|
|
|
app = FastAPI()
|
|
|
|
|
|
@app.get("/items/", response_class=UJSONResponse)
|
|
async def read_items():
|
|
return [{"item_id": "Foo"}]
|