From 6a6d28038494626ed74fc842c814477b16af1e75 Mon Sep 17 00:00:00 2001 From: ks129 <45097959+ks129@users.noreply.github.com> Date: Tue, 1 Dec 2020 09:54:22 +0200 Subject: Create BaseUser implementation for JWT authentication --- backend/authentication/__init__.py | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 backend/authentication/__init__.py (limited to 'backend/authentication/__init__.py') diff --git a/backend/authentication/__init__.py b/backend/authentication/__init__.py new file mode 100644 index 0000000..35b01f3 --- /dev/null +++ b/backend/authentication/__init__.py @@ -0,0 +1,3 @@ +from .user import User + +__all__ = ["User"] -- cgit v1.2.3