2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-15 11:35:41 +00:00

simpler imports

This commit is contained in:
Matthias
2021-11-20 17:46:50 +01:00
parent e762ec676d
commit 8ac41970ad
5 changed files with 13 additions and 7 deletions

View File

@ -0,0 +1,6 @@
"""utility class to enable simpler imports"""
from ..builtin.integration.mixins import AppMixin, GlobalSettingsMixin, UrlsMixin, NavigationMixin
__all__ = [
'AppMixin', 'GlobalSettingsMixin', 'UrlsMixin', 'NavigationMixin',
]