from django.urls import path from rest_framework.urlpatterns import format_suffix_patterns from . import views urlpatterns = [ path('', views.api_root), path('snippets/', views.SnippetList.as_view(), name='snippet-list'), path('snippets//', views.SnippetDetail.as_view(), name='snippet-detail'), path('snippets//highlight/', views.SnippetHighlight.as_view(), name='snippet-highlight'), path('users/', views.UserList.as_view(), name='user-list'), path('users//', views.UserDetail.as_view(), name='user-detail'), ] urlpatterns = format_suffix_patterns(urlpatterns)