diff --git a/pinaxcon/apps.py b/pinaxcon/apps.py new file mode 100644 index 0000000000000000000000000000000000000000..757e4e005d7d08626b088075deec507a78640ed0 --- /dev/null +++ b/pinaxcon/apps.py @@ -0,0 +1,11 @@ +from importlib import import_module + +from django.apps import AppConfig as BaseAppConfig + + +class AppConfig(BaseAppConfig): + + name = "pinaxcon" + + def ready(self): + import_module("pinaxcon.receivers")