9 lines
313 B
Python
9 lines
313 B
Python
|
|
"""Plugin system framework for LeoCRM."""
|
||
|
|
|
||
|
|
from app.plugins.manifest import PluginManifest
|
||
|
|
from app.plugins.base import BasePlugin
|
||
|
|
from app.plugins.registry import get_registry
|
||
|
|
from app.plugins.migration_runner import MigrationRunner
|
||
|
|
|
||
|
|
__all__ = ["PluginManifest", "BasePlugin", "get_registry", "MigrationRunner"]
|