You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ctk/services/backend/src/api/views/view.py

10 lines
261 B
Python

from rest_framework.response import Response
from rest_framework import generics, status
class ViewGenericAPIView(generics.GenericAPIView):
permission_classes = []
def get(self, request):
return Response({}, status=status.HTTP_404_NOT_FOUND)