from django.urls import path from . import views from django.conf import settings urlpatterns = [ path('category//', views.getProductData), path('search/', views.searchQuery), path('fetchCategory/', views.fetchCategory), path('hello/', views.hello), ]