github.com/terramate-io/tf@v0.0.0-20230830114523-fce866b4dfcd/legacy/terraform/ui_output_callback.go (about) 1 // Copyright (c) HashiCorp, Inc. 2 // SPDX-License-Identifier: MPL-2.0 3 4 package terraform 5 6 type CallbackUIOutput struct { 7 OutputFn func(string) 8 } 9 10 func (o *CallbackUIOutput) Output(v string) { 11 o.OutputFn(v) 12 }