We have the class-based view HelloWorldView. Transform it to helloworld_view, a function-based view that responds only to GET requests
class HelloWorldView(View):
def get(self, request):
html = "Hello, World!"
return HttpResponse(html)