From 028198f0f1f61d2d71cffb69ca5529a2cad80599 Mon Sep 17 00:00:00 2001 From: mrhid6 Date: Tue, 8 Sep 2026 07:34:53 +0000 Subject: [PATCH] refactor: rename shared module to gitea.hostxtra.co.uk/vantage/vantage-shared --- go.mod | 4 ++-- internal/cmd/backup.go | 2 +- internal/cmd/inspect.go | 2 +- internal/cmd/inspect_test.go | 2 +- internal/cmd/restore.go | 2 +- internal/cmd/verify.go | 2 +- internal/cmd/verify_test.go | 2 +- 7 files changed, 8 insertions(+), 8 deletions(-) diff --git a/go.mod b/go.mod index 761d620..3269aa8 100644 --- a/go.mod +++ b/go.mod @@ -2,10 +2,10 @@ module gitea.hostxtra.co.uk/mrhid6/vantage/vantagectl go 1.26 -replace gitea.hostxtra.co.uk/mrhid6/vantage/shared => ../shared +replace gitea.hostxtra.co.uk/vantage/vantage-shared => ../shared require ( - gitea.hostxtra.co.uk/mrhid6/vantage/shared v0.0.0-00010101000000-000000000000 + gitea.hostxtra.co.uk/vantage/vantage-shared v0.0.0-00010101000000-000000000000 github.com/spf13/cobra v1.10.2 go.mongodb.org/mongo-driver/v2 v2.8.0 golang.org/x/term v0.45.0 diff --git a/internal/cmd/backup.go b/internal/cmd/backup.go index c70ffdc..a4ecd5c 100644 --- a/internal/cmd/backup.go +++ b/internal/cmd/backup.go @@ -8,7 +8,7 @@ import ( "path/filepath" "time" - "gitea.hostxtra.co.uk/mrhid6/vantage/shared/backup" + "gitea.hostxtra.co.uk/vantage/vantage-shared/backup" "github.com/spf13/cobra" ) diff --git a/internal/cmd/inspect.go b/internal/cmd/inspect.go index 5f6580b..29f2284 100644 --- a/internal/cmd/inspect.go +++ b/internal/cmd/inspect.go @@ -6,7 +6,7 @@ import ( "strings" "text/tabwriter" - "gitea.hostxtra.co.uk/mrhid6/vantage/shared/backup" + "gitea.hostxtra.co.uk/vantage/vantage-shared/backup" "github.com/spf13/cobra" ) diff --git a/internal/cmd/inspect_test.go b/internal/cmd/inspect_test.go index a6bed5a..0b1d837 100644 --- a/internal/cmd/inspect_test.go +++ b/internal/cmd/inspect_test.go @@ -7,7 +7,7 @@ import ( "testing" "time" - "gitea.hostxtra.co.uk/mrhid6/vantage/shared/backup" + "gitea.hostxtra.co.uk/vantage/vantage-shared/backup" ) func TestArchiveNameIsSortableAndNamesTheDatabase(t *testing.T) { diff --git a/internal/cmd/restore.go b/internal/cmd/restore.go index a74d452..b42a718 100644 --- a/internal/cmd/restore.go +++ b/internal/cmd/restore.go @@ -10,7 +10,7 @@ import ( "strings" "text/tabwriter" - "gitea.hostxtra.co.uk/mrhid6/vantage/shared/backup" + "gitea.hostxtra.co.uk/vantage/vantage-shared/backup" "github.com/spf13/cobra" "golang.org/x/term" ) diff --git a/internal/cmd/verify.go b/internal/cmd/verify.go index d1a55c8..ac2017e 100644 --- a/internal/cmd/verify.go +++ b/internal/cmd/verify.go @@ -4,7 +4,7 @@ import ( "context" "fmt" - "gitea.hostxtra.co.uk/mrhid6/vantage/shared/backup" + "gitea.hostxtra.co.uk/vantage/vantage-shared/backup" "github.com/spf13/cobra" "go.mongodb.org/mongo-driver/v2/mongo" ) diff --git a/internal/cmd/verify_test.go b/internal/cmd/verify_test.go index 72e66e3..c0d5180 100644 --- a/internal/cmd/verify_test.go +++ b/internal/cmd/verify_test.go @@ -8,7 +8,7 @@ import ( "testing" "time" - "gitea.hostxtra.co.uk/mrhid6/vantage/shared/backup" + "gitea.hostxtra.co.uk/vantage/vantage-shared/backup" ) const testKeyHex = "0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef"