Fix ping response (#13757)

### What problem does this PR solve?

As title to be compatible with go server

### Type of change

- [x] Bug Fix (non-breaking change which fixes an issue)

Signed-off-by: Jin Hai <haijin.chn@gmail.com>
This commit is contained in:
Jin Hai
2026-03-24 15:15:21 +08:00
committed by GitHub
parent d32967eda8
commit 9eb11bf65d

View File

@ -36,7 +36,7 @@ admin_bp = Blueprint("admin", __name__, url_prefix="/api/v1/admin")
@admin_bp.route("/ping", methods=["GET"])
def ping():
return success_response("PONG")
return success_response(message="pong")
@admin_bp.route("/login", methods=["POST"])