initial commit
No real output to terminal yet, but spotify api works. mostly.
This commit is contained in:
@@ -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")
|
||||
Reference in New Issue
Block a user