first commit

This commit is contained in:
2026-02-18 20:34:33 -03:00
parent 2f819da943
commit 60f0dcaac4
50 changed files with 8099 additions and 1471 deletions

View File

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