github.com/terramate-io/tf@v0.0.0-20230830114523-fce866b4dfcd/legacy/terraform/ui_output.go (about) 1 // Copyright (c) HashiCorp, Inc. 2 // SPDX-License-Identifier: MPL-2.0 3 4 package terraform 5 6 // UIOutput is the interface that must be implemented to output 7 // data to the end user. 8 type UIOutput interface { 9 Output(string) 10 }