aboutsummaryrefslogtreecommitdiffstats
path: root/routes/healthcheck.py
blob: f06b18d3585664c4a1adf0737e4d211a6fd2f436 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# 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"}))