You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

13 lines
410 B

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'),
]