aboutsummaryrefslogtreecommitdiffstats
path: root/ccp.go
diff options
context:
space:
mode:
authorRose Hogenson <rosehogenson@posteo.net>2025-10-08 17:25:07 -0700
committerRose Hogenson <rosehogenson@posteo.net>2025-10-08 17:25:07 -0700
commitb28e2143779eeb36140bd245f2524cc403d9f088 (patch)
treeecf42d3ecdd2053e06d9e2bf20ed62b2d465c6a1 /ccp.go
parentHandle wide characters in the renderer (diff)
downloadccp-b28e2143779eeb36140bd245f2524cc403d9f088.tar.zst
Update import path
Diffstat (limited to 'ccp.go')
-rw-r--r--ccp.go10
1 files changed, 5 insertions, 5 deletions
diff --git a/ccp.go b/ccp.go
index e42195a..ec8d743 100644
--- a/ccp.go
+++ b/ccp.go
@@ -15,12 +15,12 @@ import (
"github.com/charmbracelet/bubbles/progress"
"github.com/charmbracelet/lipgloss"
- "github.com/rhogenson/ccp/internal/cp"
- "github.com/rhogenson/ccp/internal/render"
- "github.com/rhogenson/ccp/internal/wfs/osfs"
- "github.com/rhogenson/ccp/internal/wfs/sftpfs"
- "github.com/rhogenson/deque"
"golang.org/x/term"
+ "roseh.moe/cmd/ccp/internal/cp"
+ "roseh.moe/cmd/ccp/internal/render"
+ "roseh.moe/cmd/ccp/internal/wfs/osfs"
+ "roseh.moe/cmd/ccp/internal/wfs/sftpfs"
+ "roseh.moe/pkg/deque"
)
var f = flag.Bool("f", false, "if an existing destination file cannot be opened, remove it and try again")