mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-26 17:01:04 -06:00
10 lines
139 B
Go
10 lines
139 B
Go
package terraform
|
|
|
|
type CallbackUIOutput struct {
|
|
OutputFn func(string)
|
|
}
|
|
|
|
func (o *CallbackUIOutput) Output(v string) {
|
|
o.OutputFn(v)
|
|
}
|