from django.urls import path from .views import AdsView urlpatterns = [ path('', AdsView.as_view()), ]