package example
import (
client "github.com/auth0/go-auth0/management/client"
option "github.com/auth0/go-auth0/management/option"
context "context"
)
func do() () {
client := client.NewClient(
option.WithToken(
"<token>",
),
)
client.Flows.Executions.Delete(
context.TODO(),
"flow_id",
"execution_id",
)
}