e7ee92868f
Now includes functions to convert json to track, artist and album
7 lines
131 B
Python
7 lines
131 B
Python
from django.urls import path
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
path('track/<str:spotify_id>', views.TrackView.as_view()),
|
|
]
|