package bhomeclient import "basic.com/valib/bhomebus.git" type Broker interface { //发布到本机 Publish(topic string, msg []byte) error //发布到远程机器 PublishNet(nodes []bhomebus.NetNode, topic string, msg []byte) error Subscribe(topics []string) }