from django.urls import path from .views import HomeView, CountryView urlpatterns = [ path('', HomeView.as_view()), path('countries/', CountryView.as_view()), ]