Created IAC reverse generator
This commit is contained in:
21
src/iac_reverse/auth/__init__.py
Normal file
21
src/iac_reverse/auth/__init__.py
Normal file
@@ -0,0 +1,21 @@
|
||||
"""Authentication module for Authentik SSO integration."""
|
||||
|
||||
from iac_reverse.auth.authentik_auth import (
|
||||
AuthenticationError,
|
||||
AuthentikAuthProvider,
|
||||
AuthentikConfig,
|
||||
AuthentikSession,
|
||||
)
|
||||
from iac_reverse.auth.authentik_discovery import (
|
||||
AuthentikDiscoveryError,
|
||||
AuthentikDiscoveryPlugin,
|
||||
)
|
||||
|
||||
__all__ = [
|
||||
"AuthenticationError",
|
||||
"AuthentikAuthProvider",
|
||||
"AuthentikConfig",
|
||||
"AuthentikSession",
|
||||
"AuthentikDiscoveryError",
|
||||
"AuthentikDiscoveryPlugin",
|
||||
]
|
||||
Reference in New Issue
Block a user