mirror of
https://github.com/django-q2/django-q2.git
synced 2026-09-20 03:18:07 +08:00
13 lines
260 B
Python
13 lines
260 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, fetch
|
|
from .models import Task, Schedule
|
|
|
|
VERSION = (0, 3, 3)
|
|
|
|
default_app_config = 'django_q.apps.DjangoQConfig'
|