mirror of
https://github.com/django-q2/django-q2.git
synced 2026-09-15 13:37:56 +08:00
* added default module django_q * set build mode to nit-picky * warnings raise errors Want to make sure the docs are neat and build on Travis , to make it easier to accept doc pull requests
14 lines
307 B
Python
14 lines
307 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, Success, Failure
|
|
from .cluster import Cluster
|
|
|
|
VERSION = (0, 3, 4)
|
|
|
|
default_app_config = 'django_q.apps.DjangoQConfig'
|