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,11 @@
package client
type MessagingClient struct {
bootstrapBrokers []string
}
func NewMessagingClient(bootstrapBrokers []string) *MessagingClient {
return &MessagingClient{
bootstrapBrokers: bootstrapBrokers,
}
}