mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-25 08:21:07 -06:00
11 lines
222 B
Go
11 lines
222 B
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
package terraform
|
|
|
|
// UIOutput is the interface that must be implemented to output
|
|
// data to the end user.
|
|
type UIOutput interface {
|
|
Output(string)
|
|
}
|