Initial commit

This commit is contained in:
2023-01-04 17:55:18 -05:00
commit ece9a68165
29 changed files with 3191 additions and 0 deletions

8
scrobbles/urls.py Normal file
View File

@ -0,0 +1,8 @@
from django.urls import path
from scrobbles import views
app_name = 'scrobbles'
urlpatterns = [
path('', views.scrobble_list, name='scrobble-list'),
]