mirror of
https://github.com/inventree/InvenTree.git
synced 2025-05-03 22:08:49 +00:00
25 lines
662 B
Python
25 lines
662 B
Python
"""
|
|
Utility class to enable simpler imports
|
|
"""
|
|
|
|
from ..builtin.integration.mixins import APICallMixin, AppMixin, LabelPrintingMixin, SettingsMixin, EventMixin, ScheduleMixin, UrlsMixin, NavigationMixin
|
|
from common.notifications import SingleNotificationMethod, BulkNotificationMethod
|
|
|
|
from ..builtin.action.mixins import ActionMixin
|
|
from ..builtin.barcode.mixins import BarcodeMixin
|
|
|
|
__all__ = [
|
|
'APICallMixin',
|
|
'AppMixin',
|
|
'EventMixin',
|
|
'LabelPrintingMixin',
|
|
'NavigationMixin',
|
|
'ScheduleMixin',
|
|
'SettingsMixin',
|
|
'UrlsMixin',
|
|
'ActionMixin',
|
|
'BarcodeMixin',
|
|
'SingleNotificationMethod',
|
|
'BulkNotificationMethod',
|
|
]
|