NDOJ/judge/management/commands/runbridged.py
2020-07-19 16:27:14 -05:00

8 lines
No EOL
190 B
Python

from django.core.management.base import BaseCommand
from judge.bridge.daemon import judge_daemon
class Command(BaseCommand):
def handle(self, *args, **options):
judge_daemon()