mirror of
https://github.com/magnum-opus-nn-cp/backend.git
synced 2025-02-24 07:30:42 +03:00
9 lines
190 B
Python
9 lines
190 B
Python
|
from django.apps import AppConfig
|
||
|
|
||
|
|
||
|
class ProcessorConfig(AppConfig):
|
||
|
name = "press_release_nl.processor"
|
||
|
|
||
|
def ready(self):
|
||
|
import press_release_nl.processor.signals # noqa
|