Files
django-q2/django_q/__init__.py
T

14 lines
361 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
VERSION = (0, 3, 6)
default_app_config = 'django_q.apps.DjangoQConfig'