aboutsummaryrefslogtreecommitdiffstats
path: root/pysite/views/healthcheck.py
blob: 088bc7b30c9842e0e6f4b9f6c7c9443c485c5987 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# coding=utf-8
from flask import jsonify

from pysite.base_route import RouteView


__author__ = "Gareth Coles"


class IndexView(RouteView):
    path = "/healthcheck"
    name = "healthcheck"

    def get(self):
        return jsonify({"status": "ok"})