Files
django-q2/django_q/__init__.py
T
2015-07-15 23:14:37 +02:00

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, 5)
default_app_config = 'django_q.apps.DjangoQConfig'