brief-extractor/backend/server/auth/__init__.py
2026-03-06 18:42:46 +00:00

14 lines
No EOL
321 B
Python
Executable file

"""
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'
]