mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-10-29 23:38:11 +08:00
8 lines
150 B
Go
8 lines
150 B
Go
package mq
|
|
|
|
import "github.com/golang/protobuf/proto"
|
|
|
|
type Producer interface {
|
|
SendMessage(m proto.Message, key ...string) (int32, int64, error)
|
|
}
|