refactor: rename go module from zotregistry.io/zot to zotregistry.dev/zot (#2187)

Signed-off-by: Andrei Aaron <aaaron@luxoft.com>
This commit is contained in:
Andrei Aaron
2024-02-01 06:34:07 +02:00
committed by GitHub
parent 129e503d2d
commit ce4924f841
274 changed files with 1669 additions and 1669 deletions
+5 -5
View File
@@ -17,11 +17,11 @@ import (
"github.com/gorilla/mux"
"zotregistry.io/zot/pkg/api/config"
registryConst "zotregistry.io/zot/pkg/api/constants"
zcommon "zotregistry.io/zot/pkg/common"
"zotregistry.io/zot/pkg/debug/constants"
"zotregistry.io/zot/pkg/log"
"zotregistry.dev/zot/pkg/api/config"
registryConst "zotregistry.dev/zot/pkg/api/constants"
zcommon "zotregistry.dev/zot/pkg/common"
"zotregistry.dev/zot/pkg/debug/constants"
"zotregistry.dev/zot/pkg/log"
)
type profileEntry struct {
+2 -2
View File
@@ -6,8 +6,8 @@ package pprof
import (
"github.com/gorilla/mux"
"zotregistry.io/zot/pkg/api/config"
"zotregistry.io/zot/pkg/log" //nolint:goimports
"zotregistry.dev/zot/pkg/api/config"
"zotregistry.dev/zot/pkg/log" //nolint:goimports
)
func SetupPprofRoutes(conf *config.Config, router *mux.Router, authFunc mux.MiddlewareFunc,
+5 -5
View File
@@ -11,11 +11,11 @@ import (
. "github.com/smartystreets/goconvey/convey"
"gopkg.in/resty.v1"
"zotregistry.io/zot/pkg/api"
"zotregistry.io/zot/pkg/api/config"
"zotregistry.io/zot/pkg/api/constants"
debugConstants "zotregistry.io/zot/pkg/debug/constants"
test "zotregistry.io/zot/pkg/test/common"
"zotregistry.dev/zot/pkg/api"
"zotregistry.dev/zot/pkg/api/config"
"zotregistry.dev/zot/pkg/api/constants"
debugConstants "zotregistry.dev/zot/pkg/debug/constants"
test "zotregistry.dev/zot/pkg/test/common"
)
func TestProfilingAuthz(t *testing.T) {