Created IAC reverse generator

This commit is contained in:
p2913020
2026-05-22 00:19:30 -04:00
parent d04c2c6e4b
commit 1a11244fff
161 changed files with 26806 additions and 51 deletions

View 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",
]