aboutsummaryrefslogtreecommitdiffstats
path: root/routes/healthcheck.py
diff options
context:
space:
mode:
Diffstat (limited to 'routes/healthcheck.py')
-rw-r--r--routes/healthcheck.py14
1 files changed, 0 insertions, 14 deletions
diff --git a/routes/healthcheck.py b/routes/healthcheck.py
deleted file mode 100644
index f06b18d3..00000000
--- a/routes/healthcheck.py
+++ /dev/null
@@ -1,14 +0,0 @@
-# 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"}))