S SmartDocs
Series: Ricky python 7 lines · Updated 2026-04-18

health.py

Ricky/cat_project/backend/app/routes/health.py

from flask import Blueprint, jsonify

bp = Blueprint("health", __name__)

@bp.get("/health")
def health():
    return jsonify({"ok": True})

Related articles