diff --git a/go.mod b/go.mod index 8c03507..b7132d8 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module regclean +module github.com/stenic/regclean go 1.20 diff --git a/main.go b/main.go index d92eeea..c52cc32 100644 --- a/main.go +++ b/main.go @@ -5,10 +5,10 @@ import ( "io" "os" "path/filepath" - "regclean/pkg/auth" - "regclean/pkg/helpers" - "regclean/pkg/ui" - "regclean/pkg/utils" + "github.com/stenic/regclean/pkg/auth" + "github.com/stenic/regclean/pkg/helpers" + "github.com/stenic/regclean/pkg/ui" + "github.com/stenic/regclean/pkg/utils" "strings" "time" diff --git a/pkg/helpers/clusterHelper.go b/pkg/helpers/clusterHelper.go index 55806ee..4b3acc7 100644 --- a/pkg/helpers/clusterHelper.go +++ b/pkg/helpers/clusterHelper.go @@ -3,7 +3,7 @@ package helpers import ( "context" "encoding/json" - "regclean/pkg/utils" + "github.com/stenic/regclean/pkg/utils" "strings" "github.com/sirupsen/logrus" diff --git a/pkg/helpers/registryHelper.go b/pkg/helpers/registryHelper.go index 175d9bd..2760c98 100644 --- a/pkg/helpers/registryHelper.go +++ b/pkg/helpers/registryHelper.go @@ -7,7 +7,7 @@ import ( "io" "net/http" "net/url" - "regclean/pkg/caching" + "github.com/stenic/regclean/pkg/caching" "strings" "time"