Skip to content

Instantly share code, notes, and snippets.

@dmontagu
Created April 26, 2023 21:15
Show Gist options
  • Save dmontagu/fe321b13bc38afb93073f09d1349a87c to your computer and use it in GitHub Desktop.
Save dmontagu/fe321b13bc38afb93073f09d1349a87c to your computer and use it in GitHub Desktop.
from fastapi import APIRouter
router = APIRouter()
# Change
@router.get(...)
# to
@router.api_route(methods=['GET', 'OPTIONS'], ...)
@dmontagu
Copy link
Author

@willingc
Copy link

@rgbkrk Try this.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment