mirror of
https://github.com/django-q2/django-q2.git
synced 2026-09-19 10:58:06 +08:00
10 lines
239 B
Python
10 lines
239 B
Python
"""
|
|
A multiprocessing task queue application for Django
|
|
Author: Ilan Steemers (koed00@gmail.com
|
|
Github: https://github.com/Koed00/django-q
|
|
"""
|
|
|
|
from django_q.q import Cluster, async
|
|
|
|
default_app_config = 'django_q.apps.SessionAdminConfig'
|