Skip to content

Commit

Permalink
rename package
Browse files Browse the repository at this point in the history
  • Loading branch information
Konstantin Belyalov committed Apr 20, 2023
1 parent 728b6fc commit a14a52a
Show file tree
Hide file tree
Showing 9 changed files with 20 additions and 20 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/bodgit/sevenzip
module github.com/todylcom/sevenzip

go 1.17

Expand Down
2 changes: 1 addition & 1 deletion internal/bcj2/reader.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"errors"
"io"

"github.com/bodgit/sevenzip/internal/util"
"github.com/todylcom/sevenzip/internal/util"
"github.com/hashicorp/go-multierror"
)

Expand Down
2 changes: 1 addition & 1 deletion internal/deflate/reader.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"io"
"sync"

"github.com/bodgit/sevenzip/internal/util"
"github.com/todylcom/sevenzip/internal/util"
"github.com/klauspost/compress/flate"
)

Expand Down
2 changes: 1 addition & 1 deletion internal/pool/pool.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"sort"
"sync"

"github.com/bodgit/sevenzip/internal/util"
"github.com/todylcom/sevenzip/internal/util"
)

// Pooler is the interface implemented by a pool.
Expand Down
4 changes: 2 additions & 2 deletions reader.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ import (
"time"

"github.com/bodgit/plumbing"
"github.com/bodgit/sevenzip/internal/pool"
"github.com/bodgit/sevenzip/internal/util"
"github.com/todylcom/sevenzip/internal/pool"
"github.com/todylcom/sevenzip/internal/util"
"github.com/hashicorp/go-multierror"
"go4.org/readerutil"
)
Expand Down
4 changes: 2 additions & 2 deletions reader_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import (
"testing"
"testing/fstest"

"github.com/bodgit/sevenzip"
"github.com/bodgit/sevenzip/internal/util"
"github.com/todylcom/sevenzip"
"github.com/todylcom/sevenzip/internal/util"
"github.com/stretchr/testify/assert"
)

Expand Down
20 changes: 10 additions & 10 deletions register.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,16 @@ import (
"io"
"sync"

"github.com/bodgit/sevenzip/internal/aes7z"
"github.com/bodgit/sevenzip/internal/bcj2"
"github.com/bodgit/sevenzip/internal/brotli"
"github.com/bodgit/sevenzip/internal/bzip2"
"github.com/bodgit/sevenzip/internal/deflate"
"github.com/bodgit/sevenzip/internal/delta"
"github.com/bodgit/sevenzip/internal/lz4"
"github.com/bodgit/sevenzip/internal/lzma"
"github.com/bodgit/sevenzip/internal/lzma2"
"github.com/bodgit/sevenzip/internal/zstd"
"github.com/todylcom/sevenzip/internal/aes7z"
"github.com/todylcom/sevenzip/internal/bcj2"
"github.com/todylcom/sevenzip/internal/brotli"
"github.com/todylcom/sevenzip/internal/bzip2"
"github.com/todylcom/sevenzip/internal/deflate"
"github.com/todylcom/sevenzip/internal/delta"
"github.com/todylcom/sevenzip/internal/lz4"
"github.com/todylcom/sevenzip/internal/lzma"
"github.com/todylcom/sevenzip/internal/lzma2"
"github.com/todylcom/sevenzip/internal/zstd"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion struct.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"time"

"github.com/bodgit/plumbing"
"github.com/bodgit/sevenzip/internal/util"
"github.com/todylcom/sevenzip/internal/util"
)

var errAlgorithm = errors.New("sevenzip: unsupported compression algorithm")
Expand Down
2 changes: 1 addition & 1 deletion types.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"math/bits"
"time"

"github.com/bodgit/sevenzip/internal/util"
"github.com/todylcom/sevenzip/internal/util"
"github.com/bodgit/windows"
"golang.org/x/text/encoding/unicode"
"golang.org/x/text/transform"
Expand Down

0 comments on commit a14a52a

Please sign in to comment.