Files
django-q2/django_q/__init__.py
T
2020-07-02 13:28:18 +02:00

13 lines
234 B
Python

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