Files
muzak/playlist/urls.py
T
mark e7ee92868f Adds object creation from spotify
Now includes functions to convert json to track, artist and album
2024-02-06 01:13:57 +01:00

7 lines
131 B
Python

from django.urls import path
from . import views
urlpatterns = [
path('track/<str:spotify_id>', views.TrackView.as_view()),
]