2023-08-07 03:44:54 +00:00
|
|
|
package consumer
|
|
|
|
|
|
|
|
import "fmt"
|
|
|
|
|
|
|
|
// 消费渲染需要组装的数据
|
|
|
|
type MqConsumerRenderAssemble struct {
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *MqConsumerRenderAssemble) Run(data []byte) error {
|
2023-08-07 04:31:31 +00:00
|
|
|
fmt.Println("收到需要组装的消息:" + string(data))
|
2023-08-07 03:44:54 +00:00
|
|
|
return nil
|
|
|
|
}
|