revert: app/ → site/ (drhider proves site/ works fine)

This commit is contained in:
2026-07-14 22:56:19 +04:00
parent 38547404f5
commit 96718fc065
42 changed files with 52 additions and 52 deletions
+10
View File
@@ -0,0 +1,10 @@
"""Health probe — обязательно для Штурвала."""
from flask import Blueprint, jsonify
from site.config import VERSION
health_bp = Blueprint("health", __name__)
@health_bp.route("/health")
def health():
return jsonify({"ok": True, "version": VERSION})