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