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>
15 lines
429 B
Python
15 lines
429 B
Python
"""
|
|
OpenPanel Plugin - Product Analytics Management
|
|
|
|
Complete OpenPanel Self-Hosted management through REST API.
|
|
Provides tools for event tracking, data export, funnels,
|
|
dashboards, user profiles, and analytics reports.
|
|
|
|
For Self-Hosted instances deployed on Coolify.
|
|
"""
|
|
|
|
from plugins.openpanel.client import OpenPanelClient
|
|
from plugins.openpanel.plugin import OpenPanelPlugin
|
|
|
|
__all__ = ["OpenPanelPlugin", "OpenPanelClient"]
|