2019-03-25 15:52:35 +01:00
|
|
|
from django.urls import path
|
2019-03-26 12:52:23 +01:00
|
|
|
from django.views.generic import TemplateView
|
2019-03-25 15:52:35 +01:00
|
|
|
from . import views
|
|
|
|
|
|
|
|
urlpatterns = [
|
2019-03-26 12:52:23 +01:00
|
|
|
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
|
|
|
]
|