aboutsummaryrefslogtreecommitdiffstats
path: root/internal
diff options
context:
space:
mode:
Diffstat (limited to 'internal')
-rw-r--r--internal/cp/cp.go4
-rw-r--r--internal/wfs/osfs/osfs.go2
-rw-r--r--internal/wfs/sftpfs/sftpfs.go2
3 files changed, 4 insertions, 4 deletions
diff --git a/internal/cp/cp.go b/internal/cp/cp.go
index 7d32163..bd7a456 100644
--- a/internal/cp/cp.go
+++ b/internal/cp/cp.go
@@ -11,8 +11,8 @@ import (
"slices"
"strings"
- "github.com/rhogenson/ccp/internal/wfs"
- "github.com/rhogenson/ccp/internal/wfs/sftpfs"
+ "roseh.moe/cmd/ccp/internal/wfs"
+ "roseh.moe/cmd/ccp/internal/wfs/sftpfs"
)
// Progress is used to asynchronously report status updates and errors to the
diff --git a/internal/wfs/osfs/osfs.go b/internal/wfs/osfs/osfs.go
index a1b49b8..e06c9c6 100644
--- a/internal/wfs/osfs/osfs.go
+++ b/internal/wfs/osfs/osfs.go
@@ -6,7 +6,7 @@ import (
"io/fs"
"os"
- "github.com/rhogenson/ccp/internal/wfs"
+ "roseh.moe/cmd/ccp/internal/wfs"
)
var (
diff --git a/internal/wfs/sftpfs/sftpfs.go b/internal/wfs/sftpfs/sftpfs.go
index 9abfaf3..748e4ad 100644
--- a/internal/wfs/sftpfs/sftpfs.go
+++ b/internal/wfs/sftpfs/sftpfs.go
@@ -13,7 +13,7 @@ import (
"sync"
"github.com/pkg/sftp"
- "github.com/rhogenson/ccp/internal/wfs"
+ "roseh.moe/cmd/ccp/internal/wfs"
"golang.org/x/crypto/ssh"
"golang.org/x/crypto/ssh/agent"
"golang.org/x/crypto/ssh/knownhosts"