ready for try

This commit is contained in:
2025-07-29 20:16:11 -04:00
parent 29001b02a5
commit 18a82711cb
33 changed files with 7446 additions and 47 deletions

View File

@@ -1,22 +1,22 @@
"""API endpoints module for wikijs-python-sdk.
This module will contain endpoint handlers for different
This module contains endpoint handlers for different
Wiki.js API endpoints.
Implemented:
- Pages API (CRUD operations) ✅
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
from .base import BaseEndpoint
from .pages import PagesEndpoint
__all__ = [
# Will be implemented in Task 1.4
"BaseEndpoint",
"PagesEndpoint",
]