fix:裁剪业务逻辑调整

This commit is contained in:
momo
2023-08-23 15:10:22 +08:00
parent eb3828a86a
commit 3a2abde3b4
3 changed files with 9 additions and 5 deletions

View File

@@ -59,7 +59,7 @@ func (l *defaultImageHandle) LogoInfoSet(ctx context.Context, in *LogoInfoSetReq
err := curl.NewClient(ctx, &curl.Config{
BaseUrl: *l.BLMServiceUrl,
Url: constants.BLMServiceUrlLogoCombine,
Url: constants.BLMServiceUrlLogoFeatureExtraction,
}).PostJson(postMap, &resultBLM)
if err != nil {
logx.Error(err)
@@ -70,7 +70,9 @@ func (l *defaultImageHandle) LogoInfoSet(ctx context.Context, in *LogoInfoSetReq
logx.Error(err)
return nil, err
}
return nil, nil
return &LogoInfoSetRes{
Res: resultBLM.Data.(string),
}, nil
}
/* logo信息 */