opentofu/internal/terraform/ui_output.go
2023-05-02 15:33:06 +00:00

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