forked from iarv/pyMC_Repeater
- Implemented JWT authentication with auto-generated secret if not provided. - Added API token management functionality. - Created authentication endpoints for login, token refresh, verification, and password change. - Introduced API documentation endpoints for Swagger UI and OpenAPI spec. - Enhanced CORS support for API and documentation endpoints. - Updated OpenAPI specification to include new authentication and system endpoints.
10 lines
188 B
Python
10 lines
188 B
Python
from .jwt_handler import JWTHandler
|
|
from .api_tokens import APITokenManager
|
|
from .middleware import require_auth
|
|
|
|
__all__ = [
|
|
'JWTHandler',
|
|
'APITokenManager',
|
|
'require_auth'
|
|
]
|