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