Files
Touchh/antifroud/urls.py
2024-12-14 08:34:35 +09:00

11 lines
262 B
Python

# antifroud/urls.py
from django.urls import path
from . import views
app_name = 'antifroud'
urlpatterns = [
path('import_selected_hotels/', views.import_selected_hotels, name='importedhotels_import_selected_hotels'),
# Другие URL-адреса
]