mirror of
https://github.com/django-q2/django-q2.git
synced 2026-09-19 10:58:06 +08:00
15 lines
387 B
Python
15 lines
387 B
Python
import os
|
|
import sys
|
|
|
|
myPath = os.path.dirname(os.path.abspath(__file__))
|
|
sys.path.insert(0, myPath)
|
|
|
|
from .tasks import async, schedule, result, result_group, fetch, fetch_group, count_group, delete_group
|
|
from .models import Task, Schedule, Success, Failure
|
|
from .cluster import Cluster
|
|
from .monitor import Stat
|
|
|
|
VERSION = (0, 4, 1)
|
|
|
|
default_app_config = 'django_q.apps.DjangoQConfig'
|