Community edition generated from private repo via sync pipeline. Includes 9 plugins (WordPress, WooCommerce, WP Advanced, Gitea, n8n, Supabase, OpenPanel, Appwrite, Directus) with ~587 tools. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
16 lines
238 B
Python
16 lines
238 B
Python
"""
|
|
Gitea Plugin Handlers
|
|
|
|
All tool handlers for Gitea operations.
|
|
"""
|
|
|
|
from . import issues, pull_requests, repositories, users, webhooks
|
|
|
|
__all__ = [
|
|
"repositories",
|
|
"issues",
|
|
"pull_requests",
|
|
"users",
|
|
"webhooks",
|
|
]
|