aboutsummaryrefslogtreecommitdiffhomepage
path: root/vendor/github.com/hashicorp/terraform/terraform/ui_output.go
blob: 84427c63de1fcc72f13874e8542c30337d7713d2 (plain) (blame)
1
2
3
4
5
6
7
package terraform

// UIOutput is the interface that must be implemented to output
// data to the end user.
type UIOutput interface {
	Output(string)
}