mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-01-07 19:01:55 -05: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)
|
|
}
|