Files
app_flutter/test/server/routes/example.py
2025-06-27 20:20:51 +08:00

9 lines
217 B
Python

from fastapi import APIRouter, Response
router = APIRouter()
@router.get("/hello")
def hello(response: Response):
response.set_cookie(key="cookie1", value="value1")
return {"message": "Hello, FastAPI with CORS!"}