InvenTree/InvenTree/plugin/__init__.py

17 lines
355 B
Python

"""
Utility file to enable simper imports
"""
from .registry import registry
from .plugin import InvenTreePlugin, IntegrationPluginBase
from .helpers import MixinNotImplementedError, MixinImplementationError
__all__ = [
'registry',
'InvenTreePlugin',
IntegrationPluginBase,
'MixinNotImplementedError',
'MixinImplementationError',
]