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.
15 lines
614 B
15 lines
614 B
|
|
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'),
|
|
]
|