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})

관련 글