7 lines
114 B
Python
7 lines
114 B
Python
|
from django.urls import path
|
||
|
from charts import views
|
||
|
|
||
|
urlpatterns = [
|
||
|
path('', views.index, name='graph'),
|
||
|
]
|