Files
django-q2/django_q/__init__.py
T

13 lines
234 B
Python

VERSION = (1, 2, 4)
default_app_config = "django_q.apps.DjangoQConfig"
__all__ = ["conf", "cluster", "models", "tasks", "croniter"]
# Optional Imports
try:
from croniter import croniter
except ImportError:
croniter = None