blob: 9d1f681a1a1fa018cbda9d788969a91dbb8a5bf4 (
plain) (
blame)
| 1
2
3
4
5
6
7
8
9
10
11
12
 | # coding=utf-8
from flask import jsonify
from pysite.base_route import RouteView
class IndexView(RouteView):
    path = "/healthcheck"
    name = "healthcheck"
    def get(self):
        return jsonify({"status": "ok"})
 |