opentofu/internal/tofu/ui_output_callback.go

13 lines
204 B
Go
Raw Normal View History

// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0
2023-09-20 07:16:53 -05:00
package tofu
type CallbackUIOutput struct {
2015-02-13 11:49:29 -06:00
OutputFn func(string)
}
func (o *CallbackUIOutput) Output(v string) {
o.OutputFn(v)
}