diff options
| author | mo khan <mo@mokhan.ca> | 2025-04-14 09:40:52 -0600 |
|---|---|---|
| committer | mo khan <mo@mokhan.ca> | 2025-04-14 09:40:52 -0600 |
| commit | 37ba0e25b1760778d1edda25b84ff43023670eae (patch) | |
| tree | 66924a00de96ab85f7a2aaf55954db41e9c93c19 /pkg | |
| parent | 0bef608297d7def2a18d054e7230fe0e0a3710a7 (diff) | |
fix: update go mod namespace
Diffstat (limited to 'pkg')
| -rw-r--r-- | pkg/db/repository.go | 4 | ||||
| -rw-r--r-- | pkg/db/repository_test.go | 2 | ||||
| -rw-r--r-- | pkg/domain/sparkle.go | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/pkg/db/repository.go b/pkg/db/repository.go index d8a5990..aaa6e51 100644 --- a/pkg/db/repository.go +++ b/pkg/db/repository.go @@ -1,8 +1,8 @@ package db import ( - "gitlab.com/mokhax/sparkled/pkg/domain" - "gitlab.com/mokhax/sparkled/pkg/pls" + "gitlab.com/gitlab-org/software-supply-chain-security/authorization/sparkled/pkg/domain" + "gitlab.com/gitlab-org/software-supply-chain-security/authorization/sparkled/pkg/pls" ) type Repository interface { diff --git a/pkg/db/repository_test.go b/pkg/db/repository_test.go index 7a9938c..6d4ee24 100644 --- a/pkg/db/repository_test.go +++ b/pkg/db/repository_test.go @@ -5,7 +5,7 @@ import ( "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" - "gitlab.com/mokhax/sparkled/pkg/domain" + "gitlab.com/gitlab-org/software-supply-chain-security/authorization/sparkled/pkg/domain" ) func TestRepository(t *testing.T) { diff --git a/pkg/domain/sparkle.go b/pkg/domain/sparkle.go index 54ccb13..a139d56 100644 --- a/pkg/domain/sparkle.go +++ b/pkg/domain/sparkle.go @@ -4,7 +4,7 @@ import ( "errors" "regexp" - "gitlab.com/mokhax/sparkled/pkg/pls" + "gitlab.com/gitlab-org/software-supply-chain-security/authorization/sparkled/pkg/pls" ) type Sparkle struct { |
