File size: 228 Bytes
38171fa
 
 
 
 
 
 
1
2
3
4
5
6
7
8
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"),
]