django-components/django_components/__init__.py
2021-02-05 21:31:09 +01:00

15 lines
412 B
Python

from importlib import import_module
from django.utils.module_loading import autodiscover_modules
default_app_config = "django_components.apps.ComponentsConfig"
def autodiscover():
# look for "components" module/pkg in each app
from . import app_settings
if app_settings.AUTODISCOVER:
autodiscover_modules("components")
for path in app_settings.LIBRARIES:
import_module(path)