From 37ba0e25b1760778d1edda25b84ff43023670eae Mon Sep 17 00:00:00 2001 From: mo khan Date: Mon, 14 Apr 2025 09:40:52 -0600 Subject: fix: update go mod namespace --- app/app.go | 8 ++++---- app/app_test.go | 2 +- app/controllers/sparkles/controller.go | 4 ++-- app/controllers/sparkles/controller_test.go | 6 +++--- app/init.go | 6 +++--- 5 files changed, 13 insertions(+), 13 deletions(-) (limited to 'app') diff --git a/app/app.go b/app/app.go index 3edd5f3..0d3dd05 100644 --- a/app/app.go +++ b/app/app.go @@ -4,10 +4,10 @@ import ( "net/http" "github.com/xlgmokha/x/pkg/ioc" - "gitlab.com/mokhax/sparkled/app/controllers/health" - "gitlab.com/mokhax/sparkled/app/controllers/sparkles" - "gitlab.com/mokhax/sparkled/pkg/db" - "gitlab.com/mokhax/sparkled/pkg/web" + "gitlab.com/gitlab-org/software-supply-chain-security/authorization/sparkled/app/controllers/health" + "gitlab.com/gitlab-org/software-supply-chain-security/authorization/sparkled/app/controllers/sparkles" + "gitlab.com/gitlab-org/software-supply-chain-security/authorization/sparkled/pkg/db" + "gitlab.com/gitlab-org/software-supply-chain-security/authorization/sparkled/pkg/web" ) func New() http.Handler { diff --git a/app/app_test.go b/app/app_test.go index d54397e..27f5f9c 100644 --- a/app/app_test.go +++ b/app/app_test.go @@ -6,7 +6,7 @@ import ( "testing" "github.com/stretchr/testify/assert" - "gitlab.com/mokhax/sparkled/pkg/test" + "gitlab.com/gitlab-org/software-supply-chain-security/authorization/sparkled/pkg/test" ) func TestApp(t *testing.T) { diff --git a/app/controllers/sparkles/controller.go b/app/controllers/sparkles/controller.go index f00f40c..061b5c6 100644 --- a/app/controllers/sparkles/controller.go +++ b/app/controllers/sparkles/controller.go @@ -4,8 +4,8 @@ import ( "net/http" "github.com/xlgmokha/x/pkg/serde" - "gitlab.com/mokhax/sparkled/pkg/db" - "gitlab.com/mokhax/sparkled/pkg/domain" + "gitlab.com/gitlab-org/software-supply-chain-security/authorization/sparkled/pkg/db" + "gitlab.com/gitlab-org/software-supply-chain-security/authorization/sparkled/pkg/domain" ) type Controller struct { diff --git a/app/controllers/sparkles/controller_test.go b/app/controllers/sparkles/controller_test.go index a351da1..00490d7 100644 --- a/app/controllers/sparkles/controller_test.go +++ b/app/controllers/sparkles/controller_test.go @@ -8,9 +8,9 @@ import ( "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" "github.com/xlgmokha/x/pkg/serde" - "gitlab.com/mokhax/sparkled/pkg/db" - "gitlab.com/mokhax/sparkled/pkg/domain" - "gitlab.com/mokhax/sparkled/pkg/test" + "gitlab.com/gitlab-org/software-supply-chain-security/authorization/sparkled/pkg/db" + "gitlab.com/gitlab-org/software-supply-chain-security/authorization/sparkled/pkg/domain" + "gitlab.com/gitlab-org/software-supply-chain-security/authorization/sparkled/pkg/test" ) func TestSparkles(t *testing.T) { diff --git a/app/init.go b/app/init.go index e48713d..9ff7bec 100644 --- a/app/init.go +++ b/app/init.go @@ -4,9 +4,9 @@ import ( "net/http" "github.com/xlgmokha/x/pkg/ioc" - "gitlab.com/mokhax/sparkled/app/controllers/health" - "gitlab.com/mokhax/sparkled/app/controllers/sparkles" - "gitlab.com/mokhax/sparkled/pkg/db" + "gitlab.com/gitlab-org/software-supply-chain-security/authorization/sparkled/app/controllers/health" + "gitlab.com/gitlab-org/software-supply-chain-security/authorization/sparkled/app/controllers/sparkles" + "gitlab.com/gitlab-org/software-supply-chain-security/authorization/sparkled/pkg/db" ) func init() { -- cgit v1.2.3