adi-o3-multipass/server/auth/__init__.py

14 lines
No EOL
321 B
Python

"""
Authentication module for Brief Extractor GUI
Provides MSAL-based SSO authentication with dev mode bypass
"""
from .msal_auth import MSALAuthenticator, msal_auth
from .middleware import auth_required, dev_mode_bypass
__all__ = [
'MSALAuthenticator',
'msal_auth',
'auth_required',
'dev_mode_bypass'
]