pyauthctx 0.0.10__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
pyauthctx/__init__.py ADDED
@@ -0,0 +1,14 @@
1
+ """Docstring"""
2
+ from .auth import (
3
+ VERIFY,
4
+ CONTEXT,
5
+ )
6
+ from .crypt import KEY, JWT
7
+
8
+ __all__ = ["CAUTH"]
9
+
10
+ class CAUTH:
11
+ KEY = KEY
12
+ JWT = JWT
13
+ CONTEXT = CONTEXT
14
+ VERIFY = VERIFY
@@ -0,0 +1,4 @@
1
+ from .token import VERIFY
2
+ from .context import CONTEXT
3
+
4
+ __all__ = ["VERIFY", "CONTEXT"]