mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-26 17:01:04 -06:00
10 lines
119 B
Go
10 lines
119 B
Go
package cloudplugin
|
|
|
|
import (
|
|
"io"
|
|
)
|
|
|
|
type Cloud1 interface {
|
|
Execute(args []string, stdout, stderr io.Writer) int
|
|
}
|