semblance/backend/app/auth/__init__.py
2025-12-19 19:26:16 +00:00

9 lines
No EOL
296 B
Python
Executable file

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