from django.urls import path,include from .views import HomeView, CountryView, CommentListAPIView from .views.api_views import AppVersionListAPIView urlpatterns = [ path('', HomeView.as_view()), path('countries/', CountryView.as_view()), path('comments/', CommentListAPIView.as_view(), name='comment-list'), path('app-versions/', AppVersionListAPIView.as_view(), name='appversion-list'), ]