9 lines
No EOL
296 B
Python
Executable file
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'] |