22 lines
448 B
Python
22 lines
448 B
Python
"""API endpoints module for wikijs-python-sdk.
|
|
|
|
This module contains endpoint handlers for different
|
|
Wiki.js API endpoints.
|
|
|
|
Implemented:
|
|
- Pages API (CRUD operations) ✅
|
|
|
|
Future implementations:
|
|
- Users API (user management)
|
|
- Groups API (group management)
|
|
- Assets API (file management)
|
|
- System API (system information)
|
|
"""
|
|
|
|
from .base import BaseEndpoint
|
|
from .pages import PagesEndpoint
|
|
|
|
__all__ = [
|
|
"BaseEndpoint",
|
|
"PagesEndpoint",
|
|
] |