NDOJ/judge/management/commands/runbridged.py

9 lines
191 B
Python
Raw Normal View History

2020-01-21 15:35:58 +09:00
from django.core.management.base import BaseCommand
2020-07-19 16:27:14 -05:00
from judge.bridge.daemon import judge_daemon
2020-01-21 15:35:58 +09:00
class Command(BaseCommand):
def handle(self, *args, **options):
2022-05-14 12:57:27 -05:00
judge_daemon()