diff --git a/plugins/base_plugin.py b/plugins/base_plugin.py new file mode 100644 index 0000000..dada9dc --- /dev/null +++ b/plugins/base_plugin.py @@ -0,0 +1,10 @@ +""" +Plugins package - Re-exports BasePlugin from core for installed plugins. + +This allows installed plugins to use: + from plugins.base_plugin import BasePlugin +""" + +from core.base_plugin import BasePlugin + +__all__ = ['BasePlugin']