This commit is contained in:
laodaming
2023-08-07 11:44:54 +08:00
parent 36efad44df
commit 315ad19dd4
8 changed files with 37 additions and 14 deletions

View File

@@ -0,0 +1,6 @@
package mq_consumer_factory
// 消费mq消息要实现对应Run方法
type MqHandle interface {
Run(data []byte) error
}