mirror of
https://github.com/inventree/InvenTree.git
synced 2025-04-29 20:16:44 +00:00
7 lines
231 B
Python
7 lines
231 B
Python
"""utility class to enable simpler imports"""
|
|
from ..builtin.integration.mixins import AppMixin, GlobalSettingsMixin, UrlsMixin, NavigationMixin
|
|
|
|
__all__ = [
|
|
'AppMixin', 'GlobalSettingsMixin', 'UrlsMixin', 'NavigationMixin',
|
|
]
|