Files
chisup/app/api/health.py
T

10 lines
148 B
Python

from flask import Blueprint, jsonify
bp = Blueprint("health", __name__)
@bp.get("/health")
def health_check():
return jsonify({"ok": True})