FinTech_app/charts/urls.py
2023-01-24 14:48:22 +01:00

7 lines
114 B
Python

from django.urls import path
from charts import views
urlpatterns = [
path('', views.index, name='graph'),
]