This commit is contained in:
李子铭 2025-03-07 16:40:45 +08:00
parent 83a23f7431
commit da2fe44408
2 changed files with 9 additions and 2 deletions

View File

@ -0,0 +1,8 @@
package biz
import "context"
func (j *VoucherBiz) WechatNotifyConsumer(ctx context.Context, tag, msg string) error {
// todo
return nil
}

View File

@ -5,6 +5,5 @@ import (
)
func (j *VoucherService) WechatNotifyConsumer(ctx context.Context, tag, msg string) error {
return nil
return j.VoucherBiz.WechatNotifyConsumer(ctx, tag, msg)
}