Skip to content

Commit

Permalink
update module path to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
briskt committed Oct 2, 2024
1 parent 1c80ff8 commit 10f4354
Show file tree
Hide file tree
Showing 13 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import (
"github.com/spf13/cobra"
"github.com/spf13/viper"

"github.com/silinternational/tfc-ops/v3/lib"
"github.com/silinternational/tfc-ops/v4/lib"
)

const requiredPrefix = "required - "
Expand Down
2 changes: 1 addition & 1 deletion cmd/variablesAdd.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import (

"github.com/spf13/cobra"

"github.com/silinternational/tfc-ops/v3/lib"
"github.com/silinternational/tfc-ops/v4/lib"
)

var variablesAddCmd = &cobra.Command{
Expand Down
2 changes: 1 addition & 1 deletion cmd/variablesDelete.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import (

"github.com/spf13/cobra"

"github.com/silinternational/tfc-ops/v3/lib"
"github.com/silinternational/tfc-ops/v4/lib"
)

var key string
Expand Down
2 changes: 1 addition & 1 deletion cmd/variablesList.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import (

"github.com/spf13/cobra"

api "github.com/silinternational/tfc-ops/v3/lib"
api "github.com/silinternational/tfc-ops/v4/lib"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion cmd/variablesUpdate.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"github.com/manifoldco/promptui"
"github.com/spf13/cobra"

"github.com/silinternational/tfc-ops/v3/lib"
"github.com/silinternational/tfc-ops/v4/lib"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion cmd/varsetsApply.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import (

"github.com/spf13/cobra"

"github.com/silinternational/tfc-ops/v3/lib"
"github.com/silinternational/tfc-ops/v4/lib"
)

var varsetsApplyCmd = &cobra.Command{
Expand Down
2 changes: 1 addition & 1 deletion cmd/varsetsList.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import (

"github.com/spf13/cobra"

"github.com/silinternational/tfc-ops/v3/lib"
"github.com/silinternational/tfc-ops/v4/lib"
)

var varsetsListCmd = &cobra.Command{
Expand Down
2 changes: 1 addition & 1 deletion cmd/workspacesClone.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import (

"github.com/spf13/cobra"

cloner "github.com/silinternational/tfc-ops/v3/lib"
cloner "github.com/silinternational/tfc-ops/v4/lib"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion cmd/workspacesConsumers.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import (

"github.com/spf13/cobra"

"github.com/silinternational/tfc-ops/v3/lib"
"github.com/silinternational/tfc-ops/v4/lib"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion cmd/workspacesList.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import (

"github.com/spf13/cobra"

"github.com/silinternational/tfc-ops/v3/lib"
"github.com/silinternational/tfc-ops/v4/lib"
)

var attributes string
Expand Down
2 changes: 1 addition & 1 deletion cmd/workspacesUpdate.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import (

"github.com/spf13/cobra"

"github.com/silinternational/tfc-ops/v3/lib"
"github.com/silinternational/tfc-ops/v4/lib"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/silinternational/tfc-ops/v3
module github.com/silinternational/tfc-ops/v4

go 1.19

Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

package main

import "github.com/silinternational/tfc-ops/v3/cmd"
import "github.com/silinternational/tfc-ops/v4/cmd"

func main() {
cmd.Execute()
Expand Down

0 comments on commit 10f4354

Please sign in to comment.