code error

This commit is contained in:
withchao 2023-03-16 18:54:01 +08:00
parent 5c38ffa15e
commit c331d6f200
2 changed files with 3 additions and 3 deletions

View File

@ -17,7 +17,7 @@ func Call[A, B, C any](
var req A
if err := c.BindJSON(&req); err != nil {
log.ZWarn(c, "gin bind json error", err, "req", req)
apiresp.GinError(c, errs.ErrArgs.Wrap(err.Error())) // 参数错误
apiresp.GinError(c, errs.ErrArgs.WithDetail(err.Error()).Wrap()) // 参数错误
return
}
if check, ok := any(&req).(interface{ Check() error }); ok {

View File

@ -41,7 +41,7 @@ func NewGinRouter(zk discoveryregistry.SvcDiscoveryRegistry, rdb redis.Universal
userRouterGroupChildToken.POST("/account_check", u.AccountCheck) // todo
userRouterGroupChildToken.POST("/get_users", u.GetUsers)
}
////friend routing group
//friend routing group
friendRouterGroup := r.Group("/friend")
{
f := NewFriend(zk)