Files
tripwithbonus/RoutesApp/urls.py
SDE 5ff0b100c5 0.1.30
routes/route_search_results/
2023-08-04 14:16:36 +03:00

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'),
]