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