terraform/terraform/ui_output_callback.go

10 lines
139 B
Go
Raw Normal View History

package terraform
type CallbackUIOutput struct {
2015-02-13 18:49:29 +01:00
OutputFn func(string)
}
func (o *CallbackUIOutput) Output(v string) {
o.OutputFn(v)
}