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.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/pysite/views/healthcheck.py b/pysite/views/healthcheck.py
index 3931100c..088bc7b3 100644
--- a/pysite/views/healthcheck.py
+++ b/pysite/views/healthcheck.py
@@ -1,10 +1,13 @@
# coding=utf-8
from flask import jsonify
-from pysite.base_route import BaseView
+from pysite.base_route import RouteView
-class IndexView(BaseView):
+__author__ = "Gareth Coles"
+
+
+class IndexView(RouteView):
path = "/healthcheck"
name = "healthcheck"