Fix module path and restore cmd/ omitted by gitignore

Rename module github.com/johnellis/stalwart-migrator ->
github.com/LINUXexpert-org/stalwart-migrator to match the repository
location, so the module resolves under `go get`.

The initial commit's .gitignore listed the compiled binary as a bare
`stalwart-migrate` pattern, which Git matches at any depth -- so it also
excluded the cmd/stalwart-migrate/ source directory, and the initial
commit shipped without the CLI entrypoint. Anchor the pattern to the
repo root as /stalwart-migrate and add the four missing files.

go build, go vet, and go test ./... all pass.
This commit is contained in:
2026-08-22 18:23:48 -07:00
parent 719a945d64
commit 5566eed1c8
16 changed files with 438 additions and 17 deletions
+1 -1
View File
@@ -8,7 +8,7 @@ import (
"net/http"
"time"
"github.com/johnellis/stalwart-migrator/internal/checkpoint"
"github.com/LINUXexpert-org/stalwart-migrator/internal/checkpoint"
)
// Options configures one full recovery-mode migration cycle: starting the
+1 -1
View File
@@ -8,7 +8,7 @@ import (
"testing"
"time"
"github.com/johnellis/stalwart-migrator/internal/checkpoint"
"github.com/LINUXexpert-org/stalwart-migrator/internal/checkpoint"
)
func TestRecoveryRunEndToEndAndResume(t *testing.T) {