from django.urls import path | |
from core.views import get_scores, get_mf_data | |
urlpatterns = [ | |
path("mutual-fund-details/", get_scores, name="mutual-fund-details"), | |
path("get-mf-data/", get_mf_data, name="get-mf-data"), | |
] | |
from django.urls import path | |
from core.views import get_scores, get_mf_data | |
urlpatterns = [ | |
path("mutual-fund-details/", get_scores, name="mutual-fund-details"), | |
path("get-mf-data/", get_mf_data, name="get-mf-data"), | |
] | |