Install & Initialize SuprSend Go SDK using your workspace credentials for sending notifications.
suprsend-go
go get github.com/suprsend/suprsend-go
package main import ( "log" suprsend "github.com/suprsend/suprsend-go" ) // Initialize SDK func main() { opts := []suprsend.ClientOption{ // suprsend.WithDebug(true), } suprClient, err := suprsend.NewClient("__workspace_key__", "__workspace_secret__", opts...) if err != nil { log.Println(err) } }
Was this page helpful?