diff options
Diffstat (limited to 'routes/healthcheck.py')
-rw-r--r-- | routes/healthcheck.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/routes/healthcheck.py b/routes/healthcheck.py new file mode 100644 index 00000000..11a5fc24 --- /dev/null +++ b/routes/healthcheck.py @@ -0,0 +1,8 @@ +# coding=utf-8 + + +class Index: + path = ["/healthcheck"] + + def get(self, req): + return req.Response(json={"status": "ok"}) |