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