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

@@ -11,9 +11,9 @@ import (
"github.com/opentofu/opentofu/internal/command/arguments"
"github.com/opentofu/opentofu/internal/command/clistate"
"github.com/opentofu/opentofu/internal/command/views"
"github.com/opentofu/opentofu/internal/opentf"
"github.com/opentofu/opentofu/internal/states"
"github.com/opentofu/opentofu/internal/tfdiags"
"github.com/opentofu/opentofu/internal/tofu"
)
// UntaintCommand is a cli.Command implementation that manually untaints
@@ -169,7 +169,7 @@ func (c *UntaintCommand) Run(args []string) int {
}
// Get schemas, if possible, before writing state
var schemas *opentf.Schemas
var schemas *tofu.Schemas
if isCloudMode(b) {
var schemaDiags tfdiags.Diagnostics
schemas, schemaDiags = c.MaybeGetSchemas(state, nil)