11 lines
262 B
Python
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-адреса
|
|
]
|