Files
opentf/terraform/ui_output_callback.go
Mitchell Hashimoto 819aed67d4 terraform: provisioners
2015-02-19 12:08:06 -08:00

10 lines
139 B
Go

package terraform
type CallbackUIOutput struct {
OutputFn func(string)
}
func (o *CallbackUIOutput) Output(v string) {
o.OutputFn(v)
}