from django.urls import path
from apps.views.allapi import *

urlpatterns = [
      path('rc-check/', ExternalAPI.as_view(), name='rc-check'),   
      path('GetRCdetails_server1/', GetRCdetails_server1),
      path('GetRCdetails_servergoodapi/', GetRCdetails_servergoodapi),
      
      path('GetDLdetails_apizone/', GetDLdetails_apizone),
      
      path('GetPandetailsUsingAadhar/', GetPandetailsUsingAadhar),
      
      
      
      
      # /api/products/

]