NDOJ/judge/management/commands/runbridged.py

9 lines
191 B
Python
Raw Normal View History

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