esync

Directory watching and remote syncing
Log | Files | Refs | README | LICENSE

commit 8b8f2e13b77e4baaf02b74f114c0c0c4f281ab83
parent d3d400cb0ec1310a02eefee9adbba80855bd0cc8
Author: Erik Loualiche <[email protected]>
Date:   Sun,  1 Mar 2026 14:00:29 -0600

chore: update Go module path to louloulibs/esync

Repo was transferred from eloualiche/esync to louloulibs/esync.
Updated module path in go.mod and all import statements.

Co-Authored-By: Claude Opus 4.6 <[email protected]>

Diffstat:
A.claude/settings.local.json | 11+++++++++++
Mcmd/check.go | 2+-
Mcmd/edit.go | 2+-
Mcmd/init.go | 2+-
Mcmd/sync.go | 10+++++-----
Mgo.mod | 2+-
Mintegration_test.go | 6+++---
Minternal/syncer/syncer.go | 2+-
Minternal/syncer/syncer_test.go | 2+-
Mmain.go | 2+-
Mreadme.md | 4++--
11 files changed, 28 insertions(+), 17 deletions(-)

diff --git a/.claude/settings.local.json b/.claude/settings.local.json @@ -0,0 +1,11 @@ +{ + "permissions": { + "allow": [ + "Bash(go build:*)", + "Bash(go vet:*)", + "Bash(go mod:*)", + "Bash(go test:*)", + "Bash(ls:*)" + ] + } +} diff --git a/cmd/check.go b/cmd/check.go @@ -9,7 +9,7 @@ import ( "github.com/charmbracelet/lipgloss" "github.com/spf13/cobra" - "github.com/eloualiche/esync/internal/config" + "github.com/louloulibs/esync/internal/config" ) // --------------------------------------------------------------------------- diff --git a/cmd/edit.go b/cmd/edit.go @@ -9,7 +9,7 @@ import ( "github.com/spf13/cobra" - "github.com/eloualiche/esync/internal/config" + "github.com/louloulibs/esync/internal/config" ) // --------------------------------------------------------------------------- diff --git a/cmd/init.go b/cmd/init.go @@ -8,7 +8,7 @@ import ( "github.com/spf13/cobra" - "github.com/eloualiche/esync/internal/config" + "github.com/louloulibs/esync/internal/config" ) // --------------------------------------------------------------------------- diff --git a/cmd/sync.go b/cmd/sync.go @@ -11,11 +11,11 @@ import ( tea "github.com/charmbracelet/bubbletea" "github.com/spf13/cobra" - "github.com/eloualiche/esync/internal/config" - "github.com/eloualiche/esync/internal/logger" - "github.com/eloualiche/esync/internal/syncer" - "github.com/eloualiche/esync/internal/tui" - "github.com/eloualiche/esync/internal/watcher" + "github.com/louloulibs/esync/internal/config" + "github.com/louloulibs/esync/internal/logger" + "github.com/louloulibs/esync/internal/syncer" + "github.com/louloulibs/esync/internal/tui" + "github.com/louloulibs/esync/internal/watcher" ) // --------------------------------------------------------------------------- diff --git a/go.mod b/go.mod @@ -1,4 +1,4 @@ -module github.com/eloualiche/esync +module github.com/louloulibs/esync go 1.25.0 diff --git a/integration_test.go b/integration_test.go @@ -6,9 +6,9 @@ import ( "testing" "time" - "github.com/eloualiche/esync/internal/config" - "github.com/eloualiche/esync/internal/syncer" - "github.com/eloualiche/esync/internal/watcher" + "github.com/louloulibs/esync/internal/config" + "github.com/louloulibs/esync/internal/syncer" + "github.com/louloulibs/esync/internal/watcher" ) // TestLocalSyncIntegration verifies that the Syncer can rsync files between diff --git a/internal/syncer/syncer.go b/internal/syncer/syncer.go @@ -10,7 +10,7 @@ import ( "strings" "time" - "github.com/eloualiche/esync/internal/config" + "github.com/louloulibs/esync/internal/config" ) // --------------------------------------------------------------------------- diff --git a/internal/syncer/syncer_test.go b/internal/syncer/syncer_test.go @@ -4,7 +4,7 @@ import ( "strings" "testing" - "github.com/eloualiche/esync/internal/config" + "github.com/louloulibs/esync/internal/config" ) // --------------------------------------------------------------------------- diff --git a/main.go b/main.go @@ -1,6 +1,6 @@ package main -import "github.com/eloualiche/esync/cmd" +import "github.com/louloulibs/esync/cmd" func main() { cmd.Execute() diff --git a/readme.md b/readme.md @@ -7,13 +7,13 @@ A lightweight file synchronization tool that watches your local directory for ch Install with `go install`: ```bash -go install github.com/eloualiche/esync@latest +go install github.com/louloulibs/esync@latest ``` Or build from source: ```bash -git clone https://github.com/eloualiche/esync.git +git clone https://github.com/louloulibs/esync.git cd esync go build -o esync . ```