blob: 135a91c5f0a6925c08208cf7beb9df80521d0c31 [file] [log] [blame]
package terraform
type CallbackUIOutput struct {
OutputFn func(string)
}
func (o *CallbackUIOutput) Output(v string) {
o.OutputFn(v)
}