S SmartDocs
시리즈: Ricky python 7 줄 · 업데이트 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})

관련 글