Esempio n. 1
0
 def get_params(self, request):
     #print("params", request.params)
     return JsonResponse({}, status_code=200)
Esempio n. 2
0
 def get_path_optmany(self, request):
     return JsonResponse({}, status_code=200)
Esempio n. 3
0
 def post_simple(self, request):
     #print("headers %r" % request.headers)
     #print('len', int(request.headers[b'Content-Length'][0]))
     return JsonResponse({}, status_code=200)
Esempio n. 4
0
 def delete_simple(self, request):
     return JsonResponse({}, status_code=200)
Esempio n. 5
0
 def get_health(self, request):
     return JsonResponse({"status": "ok"}, status_code=200)