From 314d94987f17f809e11af8b3d00171cb0040bc88 Mon Sep 17 00:00:00 2001 From: gazebo Date: Sat, 19 Jan 2019 11:11:09 +0800 Subject: [PATCH] - weimob.SuccessResponse.ErrMsg should be success --- platformapi/weimobapi/callback.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/platformapi/weimobapi/callback.go b/platformapi/weimobapi/callback.go index 388d3cb4..d4c41459 100644 --- a/platformapi/weimobapi/callback.go +++ b/platformapi/weimobapi/callback.go @@ -41,7 +41,9 @@ type CallbackResponse struct { var ( SuccessResponse = &CallbackResponse{ - Code: ErrorInfo{}, + Code: ErrorInfo{ + ErrMsg: "success", + }, } )