FinTech_app/charts/urls.py

7 lines
114 B
Python
Raw Normal View History

2023-01-24 14:48:22 +01:00
from django.urls import path
from charts import views
urlpatterns = [
path('', views.index, name='graph'),
]