IndominusByte/fastapi-jwt-auth

Create methods to expose self._request and self._response

brunohenriquy opened this issue · 1 comments

Since _request and _response are named with "underscore" they are considered private. If I access it with Authorize._request or Authorize._response some linters will complain. So I suggest adding a get_request() and get_response().

What do you think @IndominusByte ?