1 2 3 4 5 6 7 8 9 10 11 12 13 14
# coding=utf-8 # External Libraries from werkzeug.wrappers import Response # Site Internals import ujson as json class Index: path = ["/healthcheck"] def get(self): return Response(json.dumps({"status": "ok"}))