mirror of
https://github.com/django-q2/django-q2.git
synced 2026-09-15 13:37:56 +08:00
12 lines
221 B
Python
12 lines
221 B
Python
from django.apps import AppConfig
|
|
|
|
from django_q.conf import Conf
|
|
|
|
|
|
class DjangoQConfig(AppConfig):
|
|
name = "django_q"
|
|
verbose_name = Conf.LABEL
|
|
|
|
def ready(self):
|
|
from django_q.signals import call_hook
|