16 lines
349 B
Python
16 lines
349 B
Python
"""
|
|
Plugins package - Re-exports BasePlugin from core for installed plugins.
|
|
|
|
This allows installed plugins to use:
|
|
from plugins.base_plugin import BasePlugin
|
|
|
|
For new development, prefer:
|
|
from core.base_plugin import BasePlugin
|
|
|
|
Both imports resolve to the same class.
|
|
"""
|
|
|
|
from core.base_plugin import BasePlugin
|
|
|
|
__all__ = ['BasePlugin']
|