initial commit

No real output to terminal yet, but spotify api works. mostly.
This commit is contained in:
2024-02-05 02:41:16 +01:00
commit 727cfc9a14
15 changed files with 280 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
from django.urls import path
from . import views
urlpatterns = [
path('tracks/', views.TrackView.as_view()),
]