AiForklift/magazine/urls.py
2019-03-26 17:03:38 +01:00

10 lines
309 B
Python

from django.urls import path
from django.views.generic import TemplateView
from . import views
urlpatterns = [
path('', TemplateView.as_view(template_name='magazine/index.html')),
path('classify', views.classify, name='classify'),
path('shortestPath', views.shortestPath, name='shortestPath'),
]