10 lines
219 B
Python
10 lines
219 B
Python
# coding=utf-8
|
|
from django.urls import path
|
|
from .views import *
|
|
from django.contrib.auth import views
|
|
|
|
urlpatterns = [
|
|
|
|
path('route_search_results/', route_search_results_View, name='route_search_results_View'),
|
|
|
|
] |