blob: c873d674dc403db62add83284345c5c0ef55f190 (
plain) (
blame)
| 1
2
3
4
5
6
7
8
9
10
11
 | from flask import jsonify
from pysite.base_route import APIView
class HealthCheckView(APIView):
    path = "/healthcheck"
    name = "api.healthcheck"
    def get(self):
        return jsonify({"status": "ok"})
 |