core: add basic rule engine, needs celery debugging

This commit is contained in:
Jens Langhammer
2018-11-28 14:01:59 +01:00
parent 62ee5db752
commit b5ed371575
2 changed files with 46 additions and 0 deletions

View File

@ -1,4 +1,6 @@
"""passbook core app config"""
from importlib import import_module
from django.apps import AppConfig
@ -8,3 +10,6 @@ class PassbookCoreConfig(AppConfig):
name = 'passbook.core'
label = 'passbook_core'
verbose_name = 'passbook Core'
def ready(self):
import_module('passbook.core.rules')