From a20adffb43a952a9c405522855013c5e75af58e1 Mon Sep 17 00:00:00 2001 From: eyedeekay Date: Fri, 9 May 2025 23:12:36 -0400 Subject: [PATCH] change module path --- README.md | 2 +- cmd/github-sync/main.go | 10 +++++----- go.mod | 2 +- pkg/git/ops.go | 4 ++-- pkg/github/client.go | 4 ++-- pkg/workflow/generator.go | 4 ++-- 6 files changed, 13 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index c909b24..3191ae3 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ The `go-github-sync` tool creates GitHub Actions workflows that periodically pul ```bash # Clone the repository -git clone https://github.com/go-i2p/go-github-sync.git +git clone https://i2pgit.org/go-i2p/go-github-sync.git # Build the tool cd go-github-sync diff --git a/cmd/github-sync/main.go b/cmd/github-sync/main.go index 9b4c4d9..f7dfc84 100644 --- a/cmd/github-sync/main.go +++ b/cmd/github-sync/main.go @@ -8,11 +8,11 @@ import ( "os/signal" "syscall" - "github.com/go-i2p/go-github-sync/pkg/config" - "github.com/go-i2p/go-github-sync/pkg/git" - "github.com/go-i2p/go-github-sync/pkg/github" - "github.com/go-i2p/go-github-sync/pkg/logger" - "github.com/go-i2p/go-github-sync/pkg/workflow" + "i2pgit.org/go-i2p/go-github-sync/pkg/config" + "i2pgit.org/go-i2p/go-github-sync/pkg/git" + "i2pgit.org/go-i2p/go-github-sync/pkg/github" + "i2pgit.org/go-i2p/go-github-sync/pkg/logger" + "i2pgit.org/go-i2p/go-github-sync/pkg/workflow" "github.com/spf13/cobra" ) diff --git a/go.mod b/go.mod index acfcb6d..9f67a95 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/go-i2p/go-github-sync +module i2pgit.org/go-i2p/go-github-sync go 1.24.2 diff --git a/pkg/git/ops.go b/pkg/git/ops.go index 1f46fad..b2e57f8 100644 --- a/pkg/git/ops.go +++ b/pkg/git/ops.go @@ -9,8 +9,8 @@ import ( "strings" "time" - "github.com/go-i2p/go-github-sync/pkg/config" - "github.com/go-i2p/go-github-sync/pkg/logger" + "i2pgit.org/go-i2p/go-github-sync/pkg/config" + "i2pgit.org/go-i2p/go-github-sync/pkg/logger" ) // Client provides Git repository validation and operations. diff --git a/pkg/github/client.go b/pkg/github/client.go index e18b497..bdb1a06 100644 --- a/pkg/github/client.go +++ b/pkg/github/client.go @@ -11,8 +11,8 @@ import ( "github.com/google/go-github/v61/github" "golang.org/x/oauth2" - "github.com/go-i2p/go-github-sync/pkg/config" - "github.com/go-i2p/go-github-sync/pkg/logger" + "i2pgit.org/go-i2p/go-github-sync/pkg/config" + "i2pgit.org/go-i2p/go-github-sync/pkg/logger" ) const ( diff --git a/pkg/workflow/generator.go b/pkg/workflow/generator.go index 9903399..fe8dee2 100644 --- a/pkg/workflow/generator.go +++ b/pkg/workflow/generator.go @@ -8,8 +8,8 @@ import ( "gopkg.in/yaml.v3" - "github.com/go-i2p/go-github-sync/pkg/config" - "github.com/go-i2p/go-github-sync/pkg/logger" + "i2pgit.org/go-i2p/go-github-sync/pkg/config" + "i2pgit.org/go-i2p/go-github-sync/pkg/logger" ) // Generator generates GitHub Actions workflow files.