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>
24 lines
315 B
Python
24 lines
315 B
Python
"""Supabase Plugin Handlers"""
|
|
|
|
from plugins.supabase.handlers import (
|
|
admin,
|
|
# Phase G.2
|
|
auth,
|
|
database,
|
|
# Phase G.3
|
|
functions,
|
|
storage,
|
|
system,
|
|
)
|
|
|
|
__all__ = [
|
|
"database",
|
|
"system",
|
|
# Phase G.2
|
|
"auth",
|
|
"storage",
|
|
# Phase G.3
|
|
"functions",
|
|
"admin",
|
|
]
|