src/hdalab/apps.py
changeset 559 1357a0cfdbf7
child 660 04255afd160e
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hdalab/apps.py	Thu Mar 19 23:39:54 2015 +0100
@@ -0,0 +1,20 @@
+# -*- coding: utf-8 -*-
+'''
+Created on Mar 19, 2015
+
+@author: ymh
+'''
+
+from __future__ import absolute_import
+
+from django.apps import AppConfig
+
+
+class HdalabAppConfig(AppConfig):
+    
+    name = "hdalab"
+    verbose_name = "HdaLab"
+    
+    def ready(self):
+        from .celery import app as celery_app  # @UnusedImport
+        import hdalab.signals # @UnusedImport
\ No newline at end of file