mirror of
https://github.com/hashicorp/terraform.git
synced 2026-05-26 03:12:06 -04:00
9 lines
119 B
Go
9 lines
119 B
Go
package cloudplugin
|
|
|
|
import (
|
|
"io"
|
|
)
|
|
|
|
type Cloud1 interface {
|
|
Execute(args []string, stdout, stderr io.Writer) int
|
|
}
|