text2sql / core /urls.py
ns-devel
Text2SQL app
38171fa
raw
history blame contribute delete
228 Bytes
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"),
]