from django.urls import path from roster.views import ( RosterList, RosterGet, RosterAddress, RosterIdentifier) urlpatterns = [ path('list', RosterList.as_view()), path('get/', RosterGet.as_view()), path('address/', RosterAddress.as_view()), path('identifier/', RosterIdentifier.as_view()), ]