github.com/opentofu/opentofu@v1.7.1/internal/legacy/tofu/ui_output.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 // UIOutput is the interface that must be implemented to output 9 // data to the end user. 10 type UIOutput interface { 11 Output(string) 12 }