mirror of
https://github.com/xhongc/music-tag-web.git
synced 2026-03-20 04:05:38 +08:00
12 lines
267 B
Python
12 lines
267 B
Python
from django.apps import AppConfig
|
|
from django.db.models.signals import post_migrate
|
|
|
|
from applications.task.handlers import init_task
|
|
|
|
|
|
class ProjectConfig(AppConfig):
|
|
name = 'applications.task'
|
|
|
|
def ready(self):
|
|
post_migrate.connect(init_task, self)
|