mirror of
https://github.com/django-q2/django-q2.git
synced 2026-09-21 13:38:12 +08:00
13 lines
234 B
Python
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
|