feat: initialize flask app skeleton

This commit is contained in:
ila
2026-07-04 23:20:40 +08:00
parent 22e69ccce1
commit 5a7ea348e5
12 changed files with 82 additions and 17 deletions
+9
View File
@@ -0,0 +1,9 @@
from flask import Blueprint, jsonify
bp = Blueprint("health", __name__)
@bp.get("/health")
def health_check():
return jsonify({"ok": True})