You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
733 B
26 lines
733 B
package user_ext |
|
|
|
import ( |
|
"context" |
|
"github.com/pkg/errors" |
|
"go-common/app/interface/live/app-interface/dao" |
|
userExV1 "go-common/app/service/live/userext/api/liverpc/v1" |
|
"go-common/library/ecode" |
|
"go-common/library/log" |
|
) |
|
|
|
// GetGrayRule 获取灰度配置 |
|
func (d *Dao) GetGrayRule(ctx context.Context, req *userExV1.GrayRuleGetByMarkReq) (extResult *userExV1.GrayRuleGetByMarkResp, err error) { |
|
extResult = &userExV1.GrayRuleGetByMarkResp{} |
|
if req == nil { |
|
return nil, nil |
|
} |
|
ret, err := dao.UserExtApi.V1GrayRule.GetByMark(ctx, req) |
|
if err != nil { |
|
log.Error("call_userExt_grayRule error,err:%v", err) |
|
err = errors.WithMessage(ecode.GetGrayRuleError, "GET SEA PATROL FAIL") |
|
return |
|
} |
|
extResult = ret |
|
return |
|
}
|
|
|