10 lines
148 B
Python
10 lines
148 B
Python
from flask import Blueprint, jsonify
|
|
|
|
|
|
bp = Blueprint("health", __name__)
|
|
|
|
|
|
@bp.get("/health")
|
|
def health_check():
|
|
return jsonify({"ok": True})
|