mirror of
https://github.com/rjNemo/fastapi
synced 2026-06-06 18:46:40 +00:00
9 lines
215 B
Python
9 lines
215 B
Python
from fastapi import FastAPI
|
|
from fastapi.responses import ORJSONResponse
|
|
|
|
app = FastAPI()
|
|
|
|
|
|
@app.get("/items/", response_class=ORJSONResponse)
|
|
async def read_items():
|
|
return ORJSONResponse([{"item_id": "Foo"}])
|