Rename opentf package to tofu (#466)

This commit is contained in:
Yaron Yarimi
2023-09-20 15:16:53 +03:00
committed by GitHub
parent b524b2bdbe
commit 794e3413bb
830 changed files with 774 additions and 774 deletions

View File

@@ -0,0 +1,10 @@
// 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)
}