opentofu/terraform/ui_output_callback.go
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)
}