from rest_framework.decorators import api_view @api_view() def hello_world(request): return Response({"message": "Hello, world!"})