mirror of
https://github.com/fastapi/fastapi.git
synced 2025-12-30 01:30:13 -05:00
9 lines
162 B
Python
9 lines
162 B
Python
from fastapi import Cookie, FastAPI
|
|
|
|
app = FastAPI()
|
|
|
|
|
|
@app.get("/items/")
|
|
async def read_items(ads_id: str | None = Cookie(None)):
|
|
return {"ads_id": ads_id}
|