github.com/opentofu/opentofu@v1.7.1/internal/tofu/ui_output_callback.go (about) 1 // Copyright (c) The OpenTofu Authors 2 // SPDX-License-Identifier: MPL-2.0 3 // Copyright (c) 2023 HashiCorp, Inc. 4 // SPDX-License-Identifier: MPL-2.0 5 6 package tofu 7 8 type CallbackUIOutput struct { 9 OutputFn func(string) 10 } 11 12 func (o *CallbackUIOutput) Output(v string) { 13 o.OutputFn(v) 14 }