Updated response for ping

This commit is contained in:
ITQ
2024-03-03 17:31:56 +03:00
parent c81cd3560f
commit 18f66344bb
+1 -1
View File
@@ -5,5 +5,5 @@ from rest_framework.views import APIView
class PingApiView(APIView):
def get(self, request):
data = {"message": "ok"}
data = "ok"
return Response(data, status=status.HTTP_200_OK)