mirror of
https://github.com/fastapi/fastapi.git
synced 2026-04-05 23:55:06 -04:00
10 lines
222 B
Python
10 lines
222 B
Python
from fastapi import FastAPI, Response
|
|
|
|
app = FastAPI()
|
|
|
|
|
|
@app.get("/headers-and-object/")
|
|
def get_headers(response: Response):
|
|
response.headers["X-Cat-Dog"] = "alone in the world"
|
|
return {"message": "Hello World"}
|