aboutsummaryrefslogtreecommitdiffstats
path: root/pysite/views/healthcheck.py
diff options
context:
space:
mode:
Diffstat (limited to 'pysite/views/healthcheck.py')
-rw-r--r--pysite/views/healthcheck.py15
1 files changed, 0 insertions, 15 deletions
diff --git a/pysite/views/healthcheck.py b/pysite/views/healthcheck.py
deleted file mode 100644
index 660c8a96..00000000
--- a/pysite/views/healthcheck.py
+++ /dev/null
@@ -1,15 +0,0 @@
-# coding=utf-8
-from flask import jsonify
-
-from pysite.base_route import BaseView
-
-
-__author__ = "Gareth Coles"
-
-
-class IndexView(BaseView):
- path = "/healthcheck"
- name = "healthcheck"
-
- def get(self):
- return jsonify({"status": "ok"})