terraformDummyRepo2/vendor/github.com/hashicorp/terraform-plugin-sdk/terraform/ui_output_callback.go

10 lines
139 B
Go
Raw Normal View History

2022-04-03 04:07:16 +00:00
package terraform
type CallbackUIOutput struct {
OutputFn func(string)
}
func (o *CallbackUIOutput) Output(v string) {
o.OutputFn(v)
}