Files
Touchh/antifroud/urls.py
2024-12-13 22:25:11 +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-адреса
]