mirror of
https://github.com/hashicorp/terraform.git
synced 2026-02-19 02:39:17 -05:00
12 lines
203 B
Go
12 lines
203 B
Go
// 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
|
|
}
|