aboutsummaryrefslogtreecommitdiffstats
path: root/bridge/core
diff options
context:
space:
mode:
authorsudoforge <no-reply@sudoforge.com>2024-08-24 08:08:00 -0700
committerGitHub <noreply@github.com>2024-08-24 08:08:00 -0700
commit2004fa79e6ae7645d964a03e2ae2dd808f7d486a (patch)
tree64f3d5291d6957bd57fdb168b6aa10452f0fa1cb /bridge/core
parent63295b1106e0ad01bc1e0d682b71df14558b293a (diff)
downloadgit-bug-2004fa79e6ae7645d964a03e2ae2dd808f7d486a.tar.gz
feat: update references to the git-bug organization (#1249)
The repository was recently moved to the git-bug organization on github. This change refactors references to the repository to ensure that they use the updated owner URI. Closes: #1243 Change-Id: I799712354c6ba25cdd8b06286275850c52efe6ff
Diffstat (limited to 'bridge/core')
-rw-r--r--bridge/core/auth/credential.go4
-rw-r--r--bridge/core/auth/credential_base.go4
-rw-r--r--bridge/core/auth/credential_test.go4
-rw-r--r--bridge/core/auth/login.go2
-rw-r--r--bridge/core/auth/login_password.go2
-rw-r--r--bridge/core/auth/token.go2
-rw-r--r--bridge/core/bridge.go4
-rw-r--r--bridge/core/config.go6
-rw-r--r--bridge/core/export.go2
-rw-r--r--bridge/core/import.go2
-rw-r--r--bridge/core/interfaces.go2
11 files changed, 17 insertions, 17 deletions
diff --git a/bridge/core/auth/credential.go b/bridge/core/auth/credential.go
index 20343c9c..cb8e2baf 100644
--- a/bridge/core/auth/credential.go
+++ b/bridge/core/auth/credential.go
@@ -10,8 +10,8 @@ import (
"github.com/pkg/errors"
- "github.com/MichaelMure/git-bug/entity"
- "github.com/MichaelMure/git-bug/repository"
+ "github.com/git-bug/git-bug/entity"
+ "github.com/git-bug/git-bug/repository"
)
const (
diff --git a/bridge/core/auth/credential_base.go b/bridge/core/auth/credential_base.go
index f9d1bf67..9b6c1828 100644
--- a/bridge/core/auth/credential_base.go
+++ b/bridge/core/auth/credential_base.go
@@ -7,8 +7,8 @@ import (
"strings"
"time"
- "github.com/MichaelMure/git-bug/bridge/core"
- "github.com/MichaelMure/git-bug/repository"
+ "github.com/git-bug/git-bug/bridge/core"
+ "github.com/git-bug/git-bug/repository"
)
type credentialBase struct {
diff --git a/bridge/core/auth/credential_test.go b/bridge/core/auth/credential_test.go
index 8bb25835..b35576d0 100644
--- a/bridge/core/auth/credential_test.go
+++ b/bridge/core/auth/credential_test.go
@@ -6,8 +6,8 @@ import (
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
- "github.com/MichaelMure/git-bug/entity"
- "github.com/MichaelMure/git-bug/repository"
+ "github.com/git-bug/git-bug/entity"
+ "github.com/git-bug/git-bug/repository"
)
func TestCredential(t *testing.T) {
diff --git a/bridge/core/auth/login.go b/bridge/core/auth/login.go
index 496f2412..91114463 100644
--- a/bridge/core/auth/login.go
+++ b/bridge/core/auth/login.go
@@ -4,7 +4,7 @@ import (
"crypto/sha256"
"fmt"
- "github.com/MichaelMure/git-bug/entity"
+ "github.com/git-bug/git-bug/entity"
)
const (
diff --git a/bridge/core/auth/login_password.go b/bridge/core/auth/login_password.go
index 166e37fb..fd5d730b 100644
--- a/bridge/core/auth/login_password.go
+++ b/bridge/core/auth/login_password.go
@@ -4,7 +4,7 @@ import (
"crypto/sha256"
"fmt"
- "github.com/MichaelMure/git-bug/entity"
+ "github.com/git-bug/git-bug/entity"
)
const (
diff --git a/bridge/core/auth/token.go b/bridge/core/auth/token.go
index 84d6ac13..0b28326c 100644
--- a/bridge/core/auth/token.go
+++ b/bridge/core/auth/token.go
@@ -4,7 +4,7 @@ import (
"crypto/sha256"
"fmt"
- "github.com/MichaelMure/git-bug/entity"
+ "github.com/git-bug/git-bug/entity"
)
const (
diff --git a/bridge/core/bridge.go b/bridge/core/bridge.go
index 1fc631f0..63f5d44a 100644
--- a/bridge/core/bridge.go
+++ b/bridge/core/bridge.go
@@ -13,8 +13,8 @@ import (
"github.com/pkg/errors"
- "github.com/MichaelMure/git-bug/cache"
- "github.com/MichaelMure/git-bug/repository"
+ "github.com/git-bug/git-bug/cache"
+ "github.com/git-bug/git-bug/repository"
)
var ErrImportNotSupported = errors.New("import is not supported")
diff --git a/bridge/core/config.go b/bridge/core/config.go
index ed079eb8..4fc9501d 100644
--- a/bridge/core/config.go
+++ b/bridge/core/config.go
@@ -3,9 +3,9 @@ package core
import (
"fmt"
- "github.com/MichaelMure/git-bug/cache"
- "github.com/MichaelMure/git-bug/entities/identity"
- "github.com/MichaelMure/git-bug/entity"
+ "github.com/git-bug/git-bug/cache"
+ "github.com/git-bug/git-bug/entities/identity"
+ "github.com/git-bug/git-bug/entity"
)
func FinishConfig(repo *cache.RepoCache, metaKey string, login string) error {
diff --git a/bridge/core/export.go b/bridge/core/export.go
index 9a248739..11f90353 100644
--- a/bridge/core/export.go
+++ b/bridge/core/export.go
@@ -3,7 +3,7 @@ package core
import (
"fmt"
- "github.com/MichaelMure/git-bug/entity"
+ "github.com/git-bug/git-bug/entity"
)
type ExportEvent int
diff --git a/bridge/core/import.go b/bridge/core/import.go
index 8fab476e..a072d24a 100644
--- a/bridge/core/import.go
+++ b/bridge/core/import.go
@@ -4,7 +4,7 @@ import (
"fmt"
"strings"
- "github.com/MichaelMure/git-bug/entity"
+ "github.com/git-bug/git-bug/entity"
)
type ImportEvent int
diff --git a/bridge/core/interfaces.go b/bridge/core/interfaces.go
index 3d212f29..00b7a70e 100644
--- a/bridge/core/interfaces.go
+++ b/bridge/core/interfaces.go
@@ -4,7 +4,7 @@ import (
"context"
"time"
- "github.com/MichaelMure/git-bug/cache"
+ "github.com/git-bug/git-bug/cache"
)
type Configuration map[string]string