semblance-dev/backend/app/auth/__init__.py

9 lines
No EOL
296 B
Python

"""
Quart Authentication Module
Provides JWT authentication functionality compatible with Quart ASGI applications.
"""
from .quart_jwt import jwt_required, get_jwt_identity, create_access_token, decode_token
__all__ = ['jwt_required', 'get_jwt_identity', 'create_access_token', 'decode_token']