Revert "move go client out"

This reverts commit ef1274edc9.
This commit is contained in:
Chris Lu
2020-04-18 12:44:55 -07:00
parent ef1274edc9
commit 5d346d44bd
3 changed files with 39 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
package client
import "github.com/chrislusf/seaweedfs/weed/pb/messaging_pb"
type Publisher struct {
}
func (c *MessagingClient) NewPublisher(namespace, topic string) *Publisher {
return &Publisher{}
}
func (p *Publisher) Publish(m *messaging_pb.RawData) error{
return nil
}