1\. Install the SDK ```sh go get github.com/Unleash/unleash-client-go/v3 ``` 2\. Run Unleash ```go import ( "github.com/Unleash/unleash-client-go/v3" "net/http" "time" ) func init() { unleash.Initialize( unleash.WithListener(&unleash.DebugListener{}), unleash.WithAppName("unleash-onboarding-golang"), unleash.WithUrl(""), unleash.WithCustomHeaders(http.Header{"Authorization": {""}}), unleash.WithMetricsInterval(5*time.Second), ) } func main() { for { unleash.IsEnabled("") time.Sleep(time.Second) } } ```