"""Authentication module for wikijs-python-sdk. This module will contain authentication handlers for different authentication methods supported by Wiki.js. Future implementations: - API key authentication - JWT token authentication - OAuth2 authentication """ # Placeholder for future authentication implementations # from .base import AuthHandler # from .api_key import APIKeyAuth # from .jwt import JWTAuth __all__ = [ # Will be implemented in Task 1.3 ]