aboutsummaryrefslogtreecommitdiffstats
path: root/pysite/views/api/healthcheck.py
diff options
context:
space:
mode:
Diffstat (limited to 'pysite/views/api/healthcheck.py')
-rw-r--r--pysite/views/api/healthcheck.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/pysite/views/api/healthcheck.py b/pysite/views/api/healthcheck.py
deleted file mode 100644
index c873d674..00000000
--- a/pysite/views/api/healthcheck.py
+++ /dev/null
@@ -1,11 +0,0 @@
-from flask import jsonify
-
-from pysite.base_route import APIView
-
-
-class HealthCheckView(APIView):
- path = "/healthcheck"
- name = "api.healthcheck"
-
- def get(self):
- return jsonify({"status": "ok"})