NDOJ/judge/management/commands/runbridged.py
2023-05-20 08:54:17 +09:00

8 lines
191 B
Python
Executable file

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