opentofu/internal/legacy/tofu/ui_output.go
2023-09-20 16:10:32 +03:00

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)
}