mirror of
https://github.com/django-q2/django-q2.git
synced 2026-09-19 02:48:16 +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, 2)
|
|
|
|
default_app_config = 'django_q.apps.DjangoQConfig'
|