Files
django-q2/django_q/__init__.py
2015-07-09 20:30:02 +02:00

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'