voucher/internal/service/wechat_notify_consume.go

10 lines
191 B
Go

package service
import (
"context"
)
func (j *VoucherService) WechatNotifyConsumer(ctx context.Context, tag, msg string) error {
return j.VoucherBiz.WechatNotifyConsumer(ctx, tag, msg)
}