NDOJ/judge/management/commands/runbridged.py

8 lines
190 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):
2020-07-19 21:27:14 +00:00
judge_daemon()