blob: 8cab0bbed4a5488ecf60616f65546385bdac2efa [file] [log] [blame]
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: BUSL-1.1
package pluginshared
import (
"io"
)
type CustomPluginClient interface {
Execute(args []string, stdout, stderr io.Writer) int
}