Go SDK for interacting with the internal PubSub service.
$ go get github.com/alphauslabs/pubsub-sdk-go@latestimport "github.com/alphauslabs/pubsub-sdk-go"
func main() {
client, err := pubsub.New()
if err != nil {
return
}
defer client.Close()
// use the client
}