Django - REST Framework Basics
Given this APIView code, what will be the HTTP status code in the response?
from rest_framework.views import APIView
from rest_framework.response import Response
class HelloView(APIView):
def get(self, request):
return Response({"message": "Hello!"}, status=201)