mirror of
https://github.com/hoshikawa2/rfp_response_automation.git
synced 2026-03-03 16:09:35 +00:00
8 lines
160 B
Python
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"}) |