formatting head

This commit is contained in:
Acid
2025-12-27 15:33:48 -05:00
commit 6f3bdd61d4
63 changed files with 6935 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
from django.urls import path
from .views import AuthURL, CurrentSong, PauseSong, PlaySong, SpotifyList, spotify_callback, IsAuthenticated
urlpatterns = [
path('get-auth-url', AuthURL.as_view()),
path('redirect', spotify_callback),
path('is-auth', IsAuthenticated.as_view()),
path('current-song', CurrentSong.as_view()),
path('tokens', SpotifyList.as_view()),
path('play', PlaySong.as_view()),
path('pause', PauseSong.as_view()),
]