mirror of
https://github.com/django-q2/django-q2.git
synced 2026-09-24 10:28:12 +08:00
The core module was becoming too large. By splitting it in cluster, monitor and tasks it becomes more manageable. It also reflects the documentation structure.
7 lines
158 B
Python
7 lines
158 B
Python
from .tasks import async, schedule, result, fetch
|
|
from .models import Task, Schedule
|
|
|
|
VERSION = (0, 1, 4)
|
|
|
|
default_app_config = 'django_q.apps.DjangoQConfig'
|