Files
account_store/RoutesApp/js_urls.py
SDE 4d07d613ad 0.0.44
get routes
2023-07-26 14:38:35 +03:00

10 lines
294 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'),
path('get_routes/', get_routes_ajax, name='get_routes_ajax'),
]