from django.urls import path from . import views app_name = 'proxy' urlpatterns = [ path('info/', views.proxy_info, name='info'), ]