# from django.shortcuts import render from rest_framework import generics, status from rest_framework.response import Response # Create your views here. class HelloAuthView(generics.GenericAPIView): def get(self, request): return Response(data={"message": "Hello Auth"}, status=status.HTTP_200_OK)