diff --git a/main.go b/main.go index d3f8f1a..4eac5dc 100644 --- a/main.go +++ b/main.go @@ -12,8 +12,8 @@ import ( "github.com/gin-gonic/gin" "github.com/jessevdk/go-flags" "github.com/joomcode/errorx" - "github.com/komodorio/helm-dashboard/pkg/dashboard" - "github.com/komodorio/helm-dashboard/pkg/dashboard/utils" + "github.com/komodorio/helm-dashboard/v2/pkg/dashboard" + "github.com/komodorio/helm-dashboard/v2/pkg/dashboard/utils" "github.com/pkg/browser" log "github.com/sirupsen/logrus" ) diff --git a/pkg/dashboard/api.go b/pkg/dashboard/api.go index 55a9726..e4c753b 100644 --- a/pkg/dashboard/api.go +++ b/pkg/dashboard/api.go @@ -7,10 +7,10 @@ import ( "path" "github.com/gin-gonic/gin" - "github.com/komodorio/helm-dashboard/pkg/dashboard/handlers" - "github.com/komodorio/helm-dashboard/pkg/dashboard/objects" - "github.com/komodorio/helm-dashboard/pkg/dashboard/utils" - "github.com/komodorio/helm-dashboard/pkg/frontend" + "github.com/komodorio/helm-dashboard/v2/pkg/dashboard/handlers" + "github.com/komodorio/helm-dashboard/v2/pkg/dashboard/objects" + "github.com/komodorio/helm-dashboard/v2/pkg/dashboard/utils" + "github.com/komodorio/helm-dashboard/v2/pkg/frontend" log "github.com/sirupsen/logrus" ) diff --git a/pkg/dashboard/handlers/common.go b/pkg/dashboard/handlers/common.go index fca5419..5474f45 100644 --- a/pkg/dashboard/handlers/common.go +++ b/pkg/dashboard/handlers/common.go @@ -5,7 +5,7 @@ import ( "github.com/gin-gonic/gin" "github.com/joomcode/errorx" - "github.com/komodorio/helm-dashboard/pkg/dashboard/objects" + "github.com/komodorio/helm-dashboard/v2/pkg/dashboard/objects" ) const APP = "app" diff --git a/pkg/dashboard/handlers/helmHandlers.go b/pkg/dashboard/handlers/helmHandlers.go index 0e716b3..fce14b5 100644 --- a/pkg/dashboard/handlers/helmHandlers.go +++ b/pkg/dashboard/handlers/helmHandlers.go @@ -14,8 +14,8 @@ import ( "github.com/hexops/gotextdiff/myers" "github.com/hexops/gotextdiff/span" "github.com/joomcode/errorx" - "github.com/komodorio/helm-dashboard/pkg/dashboard/objects" - "github.com/komodorio/helm-dashboard/pkg/dashboard/utils" + "github.com/komodorio/helm-dashboard/v2/pkg/dashboard/objects" + "github.com/komodorio/helm-dashboard/v2/pkg/dashboard/utils" log "github.com/sirupsen/logrus" "golang.org/x/mod/semver" "gopkg.in/yaml.v3" diff --git a/pkg/dashboard/handlers/kubeHandlers.go b/pkg/dashboard/handlers/kubeHandlers.go index dad3b05..2b2c7fb 100644 --- a/pkg/dashboard/handlers/kubeHandlers.go +++ b/pkg/dashboard/handlers/kubeHandlers.go @@ -5,7 +5,7 @@ import ( "github.com/gin-gonic/gin" "github.com/joomcode/errorx" - "github.com/komodorio/helm-dashboard/pkg/dashboard/utils" + "github.com/komodorio/helm-dashboard/v2/pkg/dashboard/utils" log "github.com/sirupsen/logrus" "k8s.io/apimachinery/pkg/api/errors" v12 "k8s.io/apimachinery/pkg/apis/testapigroup/v1" diff --git a/pkg/dashboard/objects/data.go b/pkg/dashboard/objects/data.go index 8a62ee5..b87d73b 100644 --- a/pkg/dashboard/objects/data.go +++ b/pkg/dashboard/objects/data.go @@ -10,7 +10,7 @@ import ( "io" "github.com/joomcode/errorx" - "github.com/komodorio/helm-dashboard/pkg/dashboard/utils" + "github.com/komodorio/helm-dashboard/v2/pkg/dashboard/utils" "github.com/pkg/errors" log "github.com/sirupsen/logrus" "helm.sh/helm/v3/pkg/action" diff --git a/pkg/dashboard/server.go b/pkg/dashboard/server.go index b87a19f..068bdd1 100644 --- a/pkg/dashboard/server.go +++ b/pkg/dashboard/server.go @@ -10,14 +10,14 @@ import ( "time" "github.com/joomcode/errorx" - "github.com/komodorio/helm-dashboard/pkg/dashboard/objects" + "github.com/komodorio/helm-dashboard/v2/pkg/dashboard/objects" "helm.sh/helm/v3/pkg/action" "helm.sh/helm/v3/pkg/cli" "helm.sh/helm/v3/pkg/registry" "github.com/gin-gonic/gin" "github.com/hashicorp/go-version" - "github.com/komodorio/helm-dashboard/pkg/dashboard/utils" + "github.com/komodorio/helm-dashboard/v2/pkg/dashboard/utils" log "github.com/sirupsen/logrus" )