Pierre Sigwalt

Results 1 comments of Pierre Sigwalt

I do have the same issue when using APIRouter nothing is cached Eg: ```python router = APIRouter( prefix="/emails/provider", responses={404: {"description": "Not found"}}, ) @router.post( "/sync/{email_type}", dependencies=[Security(get_current_user, scopes=["lj:admin:all", "lj:email:read"])], ) @cache(expire=60,...