AiForklift/magazine/urls.py

10 lines
309 B
Python
Raw Normal View History

2019-03-25 15:52:35 +01:00
from django.urls import path
from django.views.generic import TemplateView
2019-03-25 15:52:35 +01:00
from . import views
urlpatterns = [
path('', TemplateView.as_view(template_name='magazine/index.html')),
path('classify', views.classify, name='classify'),
2019-03-26 17:03:38 +01:00
path('shortestPath', views.shortestPath, name='shortestPath'),
2019-03-25 15:52:35 +01:00
]