mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
33 lines
926 B
Python
33 lines
926 B
Python
"""
|
|
Utility class to enable simpler imports
|
|
"""
|
|
|
|
from common.notifications import (BulkNotificationMethod,
|
|
SingleNotificationMethod)
|
|
|
|
from ..base.action.mixins import ActionMixin
|
|
from ..base.barcodes.mixins import BarcodeMixin
|
|
from ..base.event.mixins import EventMixin
|
|
from ..base.integration.mixins import (APICallMixin, AppMixin, NavigationMixin,
|
|
PanelMixin, ScheduleMixin,
|
|
SettingsMixin, UrlsMixin)
|
|
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',
|
|
]
|