mirror of
https://github.com/inventree/InvenTree.git
synced 2025-04-29 20:16:44 +00:00
20 lines
471 B
Python
20 lines
471 B
Python
"""
|
|
Utility class to enable simpler imports
|
|
"""
|
|
|
|
from ..builtin.integration.mixins import APICallMixin, AppMixin, SettingsMixin, EventMixin, ScheduleMixin, UrlsMixin, NavigationMixin
|
|
from ..builtin.action.mixins import ActionMixin
|
|
from ..builtin.barcode.mixins import BarcodeMixin
|
|
|
|
__all__ = [
|
|
'APICallMixin',
|
|
'AppMixin',
|
|
'EventMixin',
|
|
'NavigationMixin',
|
|
'ScheduleMixin',
|
|
'SettingsMixin',
|
|
'UrlsMixin',
|
|
'ActionMixin',
|
|
'BarcodeMixin',
|
|
]
|