mirror of
https://github.com/QingdaoU/OnlineJudge.git
synced 2025-11-04 14:49:58 +08:00
5 lines
173 B
Python
5 lines
173 B
Python
# coding=utf-8
|
|
from __future__ import absolute_import
|
|
from celery import Celery
|
|
|
|
app = Celery("judge", broker="redis://localhost:6379/0", include=["judge.controller.tasks"]) |