blob: 84427c63de1fcc72f13874e8542c30337d7713d2 [file] [log] [blame]
package terraform
// UIOutput is the interface that must be implemented to output
// data to the end user.
type UIOutput interface {
Output(string)
}