mirror of
https://github.com/inventree/InvenTree.git
synced 2026-04-28 02:29:31 -05:00
95dbfa1958
# Conflicts: # InvenTree/InvenTree/api.py # InvenTree/InvenTree/urls.py # InvenTree/plugin/base/integration/mixins.py # InvenTree/plugin/mixins/__init__.py
31 lines
811 B
Python
31 lines
811 B
Python
"""
|
|
Utility class to enable simpler imports
|
|
"""
|
|
|
|
from ..base.integration.mixins import APICallMixin, AppMixin, SettingsMixin, ScheduleMixin, UrlsMixin, NavigationMixin, PanelMixin
|
|
|
|
from common.notifications import SingleNotificationMethod, BulkNotificationMethod
|
|
|
|
from ..base.action.mixins import ActionMixin
|
|
from ..base.barcodes.mixins import BarcodeMixin
|
|
from ..base.event.mixins import EventMixin
|
|
from ..base.label.mixins import LabelPrintingMixin
|
|
from ..base.locate.mixins import LocateMixin
|
|
|
|
__all__ = [
|
|
'APICallMixin',
|
|
'AppMixin',
|
|
'EventMixin',
|
|
'LabelPrintingMixin',
|
|
'NavigationMixin',
|
|
'ScheduleMixin',
|
|
'SettingsMixin',
|
|
'UrlsMixin',
|
|
'PanelMixin',
|
|
'ActionMixin',
|
|
'BarcodeMixin',
|
|
'LocateMixin',
|
|
'SingleNotificationMethod',
|
|
'BulkNotificationMethod',
|
|
]
|