2020-03-01 22:30:58 +01:00
|
|
|
from fastapi import FastAPI
|
|
|
|
|
from fastapi.responses import ORJSONResponse
|
|
|
|
|
|
|
|
|
|
app = FastAPI()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@app.get("/items/", response_class=ORJSONResponse)
|
|
|
|
|
async def read_items():
|
2022-09-01 05:59:05 -04:00
|
|
|
return ORJSONResponse([{"item_id": "Foo"}])
|