from django.urls import path from .views import GetInfo urlpatterns = [ path("info", GetInfo.as_view(), name="info"), ]