9 lines
287 B
Python
9 lines
287 B
Python
from django.core.management.base import BaseCommand
|
|
from antifroud.check_fraud import run_reservation_check
|
|
|
|
class Command(BaseCommand):
|
|
help = "Запуск проверки на несоответствия"
|
|
|
|
def handle(self, *args, **options):
|
|
run_reservation_check()
|