diff --git a/cmd/change.go b/cmd/change.go index b1469d8..33a5bd2 100644 --- a/cmd/change.go +++ b/cmd/change.go @@ -4,10 +4,10 @@ import ( "ssh+/cmd/change" "github.com/spf13/cobra" - "github.com/ssh-connection-manager/json" - "github.com/ssh-connection-manager/kernel/app" - "github.com/ssh-connection-manager/output" - "github.com/ssh-connection-manager/view" + "github.com/ssh-connection-manager/kernel/v2/app" + "github.com/ssh-connection-manager/kernel/v2/pkg/json" + "github.com/ssh-connection-manager/kernel/v2/pkg/output" + "github.com/ssh-connection-manager/kernel/v2/pkg/view" ) var changeCmd = &cobra.Command{ diff --git a/cmd/connect.go b/cmd/connect.go index 9c95ea4..55e8d51 100644 --- a/cmd/connect.go +++ b/cmd/connect.go @@ -4,10 +4,10 @@ import ( "ssh+/cmd/connect" "github.com/spf13/cobra" - "github.com/ssh-connection-manager/json" - "github.com/ssh-connection-manager/kernel/app" - "github.com/ssh-connection-manager/output" - "github.com/ssh-connection-manager/view" + "github.com/ssh-connection-manager/kernel/v2/app" + "github.com/ssh-connection-manager/kernel/v2/pkg/json" + "github.com/ssh-connection-manager/kernel/v2/pkg/output" + "github.com/ssh-connection-manager/kernel/v2/pkg/view" ) var ConnectCmd = &cobra.Command{ diff --git a/cmd/create.go b/cmd/create.go index 899d22e..a85be44 100644 --- a/cmd/create.go +++ b/cmd/create.go @@ -4,9 +4,9 @@ import ( crCmd "ssh+/cmd/create" "github.com/spf13/cobra" - "github.com/ssh-connection-manager/kernel/app" - "github.com/ssh-connection-manager/output" - "github.com/ssh-connection-manager/view" + "github.com/ssh-connection-manager/kernel/v2/app" + "github.com/ssh-connection-manager/kernel/v2/pkg/output" + "github.com/ssh-connection-manager/kernel/v2/pkg/view" ) var createCmd = &cobra.Command{ diff --git a/cmd/delete.go b/cmd/delete.go index 7b18ed2..d24fcd1 100644 --- a/cmd/delete.go +++ b/cmd/delete.go @@ -4,10 +4,10 @@ import ( delCmd "ssh+/cmd/delete" "github.com/spf13/cobra" - "github.com/ssh-connection-manager/json" - "github.com/ssh-connection-manager/kernel/app" - "github.com/ssh-connection-manager/output" - "github.com/ssh-connection-manager/view" + "github.com/ssh-connection-manager/kernel/v2/app" + "github.com/ssh-connection-manager/kernel/v2/pkg/json" + "github.com/ssh-connection-manager/kernel/v2/pkg/output" + "github.com/ssh-connection-manager/kernel/v2/pkg/view" ) var deleteCmd = &cobra.Command{ diff --git a/cmd/list.go b/cmd/list.go index 2cbdefe..e720bbf 100644 --- a/cmd/list.go +++ b/cmd/list.go @@ -7,8 +7,8 @@ import ( "github.com/charmbracelet/lipgloss" "github.com/spf13/cobra" - "github.com/ssh-connection-manager/kernel/app" - "github.com/ssh-connection-manager/view" + "github.com/ssh-connection-manager/kernel/v2/app" + "github.com/ssh-connection-manager/kernel/v2/pkg/view" ) var listCmd = &cobra.Command{ diff --git a/cmd/root.go b/cmd/root.go index efaf7c4..09df45a 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -4,7 +4,7 @@ import ( "ssh+/cmd/root" "github.com/spf13/cobra" - "github.com/ssh-connection-manager/output" + "github.com/ssh-connection-manager/kernel/v2/pkg/output" ) var rootCmd = &cobra.Command{ diff --git a/main.go b/main.go index c8a8d0b..bf68558 100644 --- a/main.go +++ b/main.go @@ -3,7 +3,7 @@ package main import ( "ssh+/cmd" - "github.com/ssh-connection-manager/kernel/inits" + "github.com/ssh-connection-manager/kernel/v2/inits" ) func init() {