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