Files
rfp_response_automation/files/modules/health/routes.py
2026-02-18 20:34:33 -03:00

8 lines
160 B
Python

from flask import Blueprint, jsonify
health_bp = Blueprint("health", __name__)
@health_bp.route("/health")
def health():
return jsonify({"status": "UP"})