terraform/internal/pluginshared/interface.go

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
204 B
Go
Raw Permalink Normal View History

2023-08-16 14:04:52 -04:00
// Copyright IBM Corp. 2014, 2026
// SPDX-License-Identifier: BUSL-1.1
package pluginshared
import (
"io"
)
type CustomPluginClient interface {
Execute(args []string, stdout, stderr io.Writer) int
}