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
+11
View File
@@ -0,0 +1,11 @@
from django.shortcuts import render
from django.views import View
from django.http import HttpResponse
from . import models
from . import spotify
class TrackView(View):
def get(self, request):
return HttpResponse("Hello world!")
def post(self, request):
return HttpResponse("Bye world")