mirror of
https://github.com/QingdaoU/OnlineJudge.git
synced 2025-11-04 14:49:58 +08:00
8 lines
199 B
Python
8 lines
199 B
Python
# coding=utf-8
|
|
from __future__ import absolute_import
|
|
from judge.controller.celery import app
|
|
|
|
|
|
@app.task
|
|
def judge(source_code, language, test_case_id):
|
|
print source_code, language, test_case_id |