Files
tripwithbonus/RoutesApp/js_urls.py
SDE 86a43d69e2 0.0.26
route сreate
2023-07-13 15:37:31 +03:00

9 lines
228 B
Python

# coding=utf-8
from django.urls import path
# from AuthApp.js_views import *
# from AuthApp.import_funcs import *
from .js_views import *
urlpatterns = [
path('create_route/', create_route_ajax, name='create_route_ajax'),
]