aboutsummaryrefslogtreecommitdiffstats
path: root/routes/healthcheck.py
blob: 11a5fc24d5994b4f56174b5e719a2ab13592dfd9 (plain) (blame)
1
2
3
4
5
6
7
8
# coding=utf-8


class Index:
    path = ["/healthcheck"]

    def get(self, req):
        return req.Response(json={"status": "ok"})