mirror of
https://github.com/inventree/InvenTree.git
synced 2025-04-29 12:06:44 +00:00
27 lines
691 B
Python
27 lines
691 B
Python
"""
|
|
Utility class to enable simpler imports
|
|
"""
|
|
|
|
from ..base.integration.mixins import APICallMixin, AppMixin, LabelPrintingMixin, SettingsMixin, EventMixin, ScheduleMixin, UrlsMixin, NavigationMixin, PanelMixin
|
|
|
|
from common.notifications import SingleNotificationMethod, BulkNotificationMethod
|
|
|
|
from ..builtin.action.mixins import ActionMixin
|
|
from ..builtin.barcodes.mixins import BarcodeMixin
|
|
|
|
__all__ = [
|
|
'APICallMixin',
|
|
'AppMixin',
|
|
'EventMixin',
|
|
'LabelPrintingMixin',
|
|
'NavigationMixin',
|
|
'ScheduleMixin',
|
|
'SettingsMixin',
|
|
'UrlsMixin',
|
|
'PanelMixin',
|
|
'ActionMixin',
|
|
'BarcodeMixin',
|
|
'SingleNotificationMethod',
|
|
'BulkNotificationMethod',
|
|
]
|