diff options
author | 2020-12-01 10:18:04 +0200 | |
---|---|---|
committer | 2020-12-01 10:18:04 +0200 | |
commit | 79cdf5e89f6825b5b20c54772fc62b2a944d505a (patch) | |
tree | 9efb39e4deafa4cdbf73a3a6af6ceeeeccaa2f49 /backend/authentication/__init__.py | |
parent | Create BaseUser implementation for JWT authentication (diff) |
Create authentication backend for JWT
Diffstat (limited to 'backend/authentication/__init__.py')
-rw-r--r-- | backend/authentication/__init__.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/backend/authentication/__init__.py b/backend/authentication/__init__.py index 35b01f3..43601a7 100644 --- a/backend/authentication/__init__.py +++ b/backend/authentication/__init__.py @@ -1,3 +1,4 @@ +from .backend import JWTAuthenticationBackend from .user import User -__all__ = ["User"] +__all__ = ["JWTAuthenticationBackend", "User"] |