13 lines
245 B
Go
13 lines
245 B
Go
package consumer
|
|
|
|
import "fmt"
|
|
|
|
// 消费渲染需要组装的数据
|
|
type MqConsumerRenderAssemble struct {
|
|
}
|
|
|
|
func (m *MqConsumerRenderAssemble) Run(data []byte) error {
|
|
fmt.Println("收到需要组装的消息:" + string(data))
|
|
return nil
|
|
}
|