from django.urls import path from music.views import TrackListView urlpatterns = [ path("", TrackListView.as_view(), name="track_list"), ]