from django.urls import include, path from .views import * app_name = 'homes' urlpatterns = [ path('search/', SearchAPIView.as_view()), ]