- Updated GitHub Actions workflow to use correct flake8 configuration - Fixed line length issues by using 88 characters as configured - Removed unused imports and trailing whitespace - Fixed f-string placeholders and unused variables - All linting checks now pass with project configuration 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
23 lines
449 B
Python
23 lines
449 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",
|
|
]
|