OnlineJudge/submission/tasks.py

8 lines
191 B
Python
Raw Normal View History

2017-05-08 09:29:01 +00:00
from celery import shared_task
from judge.tasks import JudgeDispatcher
2017-05-08 09:29:01 +00:00
@shared_task
def _judge(submission_obj, problem_obj):
return JudgeDispatcher(submission_obj, problem_obj).judge()