from django.urls import path

from mpl.views import *

urlpatterns = [
    path('', home),
    path('graphs/', graphs),
    path('graph/<int:id>/', graph),
    path('tips/', tips),
    path('tip/<int:id>/', tip),
]

# handler404 = 'mysrc.views.custom_not_found'
