2023-08-07 03:44:54 +00:00
|
|
|
package consumer
|
|
|
|
|
2023-08-07 05:20:18 +00:00
|
|
|
import (
|
|
|
|
"github.com/zeromicro/go-zero/core/logx"
|
|
|
|
)
|
2023-08-07 03:44:54 +00:00
|
|
|
|
|
|
|
// 消费渲染需要组装的数据
|
|
|
|
type MqConsumerRenderAssemble struct {
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *MqConsumerRenderAssemble) Run(data []byte) error {
|
2023-08-07 05:20:18 +00:00
|
|
|
logx.Info("收到需要组装的消息:", string(data))
|
2023-08-07 03:44:54 +00:00
|
|
|
return nil
|
|
|
|
}
|