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>
30 lines
415 B
Python
30 lines
415 B
Python
"""Appwrite Plugin Handlers"""
|
|
|
|
from plugins.appwrite.handlers import (
|
|
databases,
|
|
documents,
|
|
# Phase I.4
|
|
functions,
|
|
messaging,
|
|
# Phase I.3
|
|
storage,
|
|
system,
|
|
teams,
|
|
# Phase I.2
|
|
users,
|
|
)
|
|
|
|
__all__ = [
|
|
"databases",
|
|
"documents",
|
|
"system",
|
|
# Phase I.2
|
|
"users",
|
|
"teams",
|
|
# Phase I.3
|
|
"storage",
|
|
# Phase I.4
|
|
"functions",
|
|
"messaging",
|
|
]
|