10 lines
257 B
Python
10 lines
257 B
Python
# Authentication module for SSO and MFA
|
|
from .sso import SSOAuthentication, SAMLAuthentication, OAuth2Authentication, LDAPAuthentication
|
|
|
|
__all__ = [
|
|
'SSOAuthentication',
|
|
'SAMLAuthentication',
|
|
'OAuth2Authentication',
|
|
'LDAPAuthentication'
|
|
]
|