fraud_check cmd

This commit is contained in:
zorn
2025-02-01 16:06:39 +10:00
parent 0736d0957f
commit b4e4a2f9d0

View File

@@ -0,0 +1,8 @@
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()