feat: rename to samuelncui

This commit is contained in:
崔竞宁
2023-09-22 13:50:57 +08:00
parent de1837a25d
commit 290748251e
5 changed files with 5 additions and 5 deletions

View File

@@ -10,7 +10,7 @@ An Advanced Copy Tools, with following extra features:
# Install
```
# Install acp
go install github.com/abc950309/acp/cmd/acp
go install github.com/samuelncui/acp/cmd/acp
```
# Usage

View File

@@ -6,8 +6,8 @@ import (
"os"
"os/signal"
"github.com/abc950309/acp"
"github.com/klauspost/cpuid/v2"
"github.com/samuelncui/acp"
"github.com/sirupsen/logrus"
)

View File

@@ -8,5 +8,5 @@ func TestFS(t *testing.T) {
panic(err)
}
t.Log("mp cahce", mpCache("/Users/cuijingning/go/src/github.com/abc950309/acp"))
t.Log("mp cahce", mpCache("/Users/cuijingning/go/src/github.com/samuelncui/acp"))
}

2
go.mod
View File

@@ -1,4 +1,4 @@
module github.com/abc950309/acp
module github.com/samuelncui/acp
go 1.18

View File

@@ -7,7 +7,7 @@ import (
"os"
"sync"
"github.com/abc950309/acp/mmap"
"github.com/samuelncui/acp/mmap"
)
func (c *Copyer) prepare(ctx context.Context, indexed <-chan *baseJob) <-chan *writeJob {