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