mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-27 09:21:14 -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
|
||
|
}
|