mirror of
https://github.com/fastapi/fastapi.git
synced 2025-12-28 16:49:26 -05:00
9 lines
178 B
Python
9 lines
178 B
Python
from fastapi import FastAPI, Header
|
|
|
|
app = FastAPI()
|
|
|
|
|
|
@app.get("/items/")
|
|
async def read_items(x_token: list[str] | None = Header(None)):
|
|
return {"X-Token values": x_token}
|