mirror of
https://github.com/fastapi/fastapi.git
synced 2026-02-14 08:11:10 -05:00
10 lines
205 B
Python
10 lines
205 B
Python
from fastapi import FastAPI
|
|
from fastapi.responses import ORJSONResponse
|
|
|
|
app = FastAPI(default_response_class=ORJSONResponse)
|
|
|
|
|
|
@app.get("/items/")
|
|
async def read_items():
|
|
return [{"item_id": "Foo"}]
|