mirror of
https://github.com/fastapi/fastapi.git
synced 2025-12-31 02:00:34 -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}
|