change module path

This commit is contained in:
eyedeekay
2025-05-09 23:12:36 -04:00
parent 94d5e3d0f6
commit a20adffb43
6 changed files with 13 additions and 13 deletions

View File

@ -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

View File

@ -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"
)

2
go.mod
View File

@ -1,4 +1,4 @@
module github.com/go-i2p/go-github-sync
module i2pgit.org/go-i2p/go-github-sync
go 1.24.2

View File

@ -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.

View File

@ -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 (

View File

@ -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.