mirror of
https://github.com/fastapi/fastapi.git
synced 2026-01-15 17:40:03 -05:00
9 lines
170 B
Python
9 lines
170 B
Python
from fastapi import FastAPI, Header
|
|
|
|
app = FastAPI()
|
|
|
|
|
|
@app.get("/items/")
|
|
async def read_items(*, user_agent: str = Header(None)):
|
|
return {"User-Agent": user_agent}
|