mirror of
https://github.com/rjNemo/fastapi
synced 2026-06-07 11:06:41 +00:00
9 lines
197 B
Python
9 lines
197 B
Python
from fastapi import FastAPI
|
|
from starlette.responses import UJSONResponse
|
|
|
|
app = FastAPI()
|
|
|
|
|
|
@app.get("/items/", content_type=UJSONResponse)
|
|
async def read_items():
|
|
return [{"item_id": "Foo"}]
|