S SmartDocs
シリーズ: Ricky python 7 行 · 更新日 2026-02-03

health.py

Ricky/Cat Project Final/back_web-4/app/routes/health.py

from flask import Blueprint, jsonify

bp = Blueprint("health", __name__)

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

関連記事