mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
16 lines
311 B
Python
16 lines
311 B
Python
"""
|
|
Utility file to enable simper imports
|
|
"""
|
|
|
|
from .registry import plugin_registry
|
|
from .plugin import InvenTreePlugin
|
|
from .integration import IntegrationPluginBase
|
|
from .action import ActionPlugin
|
|
|
|
__all__ = [
|
|
'ActionPlugin',
|
|
'IntegrationPluginBase',
|
|
'InvenTreePlugin',
|
|
'plugin_registry',
|
|
]
|