terraform/internal/pluginshared/interface.go
2026-02-17 13:56:34 +00:00

12 lines
204 B
Go

// 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
}