From da2fe44408365519acb83247d6544e39eed2d3e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E5=AD=90=E9=93=AD?= Date: Fri, 7 Mar 2025 16:40:45 +0800 Subject: [PATCH] cmb --- internal/biz/wechat_notify_consume.go | 8 ++++++++ internal/service/wechat_notify_consume.go | 3 +-- 2 files changed, 9 insertions(+), 2 deletions(-) create mode 100644 internal/biz/wechat_notify_consume.go diff --git a/internal/biz/wechat_notify_consume.go b/internal/biz/wechat_notify_consume.go new file mode 100644 index 0000000..ca06111 --- /dev/null +++ b/internal/biz/wechat_notify_consume.go @@ -0,0 +1,8 @@ +package biz + +import "context" + +func (j *VoucherBiz) WechatNotifyConsumer(ctx context.Context, tag, msg string) error { + // todo + return nil +} diff --git a/internal/service/wechat_notify_consume.go b/internal/service/wechat_notify_consume.go index 9b01db6..b9812ce 100644 --- a/internal/service/wechat_notify_consume.go +++ b/internal/service/wechat_notify_consume.go @@ -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) }