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.
15 lines
330 B
15 lines
330 B
package xanchor |
|
|
|
import ( |
|
"context" |
|
XanchorV1 "go-common/app/service/live/dao-anchor/api/grpc/v1" |
|
) |
|
|
|
// UpdateAnchorInfo 更新主播经验db |
|
func (d *Dao) UpdateAnchorInfo(ctx context.Context, params *XanchorV1.AnchorIncreReq) (err error) { |
|
_, err = d.xuserGRPC.AnchorIncre(ctx, params) |
|
if err != nil { |
|
return |
|
} |
|
return |
|
}
|
|
|