aboutsummaryrefslogtreecommitdiffstats
path: root/backend/authentication/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'backend/authentication/__init__.py')
-rw-r--r--backend/authentication/__init__.py3
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"]