Files
Touchh/antifroud/management/commands/fraud_check.py
2025-02-01 16:06:39 +10:00

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()