package example
import (
context "context"
client "github.com/auth0/go-auth0/management/management/client"
option "github.com/auth0/go-auth0/management/management/option"
)
func do() {
client := client.NewClient(
option.WithToken(
"<token>",
),
)
request := []string{
"string",
}
client.Hooks.Secrets.Delete(
context.TODO(),
"id",
request,
)
}