Sign in
third-party-mirror
/
terraform
/
80d4fe1e39aa758c5488269a446e7147cc3ca50f
/
.
/
v1.4.7
/
internal
/
terraform
/
ui_output_callback.go
blob: 135a91c5f0a6925c08208cf7beb9df80521d0c31 [
file
] [
log
] [
blame
]
package terraform
type CallbackUIOutput struct {
OutputFn func(string)
}
func (o *CallbackUIOutput) Output(v string) {
o.OutputFn(v)
}