"""API endpoints module for wikijs-python-sdk. This module will contain endpoint handlers for different Wiki.js API endpoints. Future implementations: - Pages API (CRUD operations) - Users API (user management) - Groups API (group management) - Assets API (file management) - System API (system information) """ # Placeholder for future endpoint implementations # from .base import BaseEndpoint # from .pages import PagesEndpoint # from .users import UsersEndpoint # from .groups import GroupsEndpoint __all__ = [ # Will be implemented in Task 1.4 ]