Skip to content

Commit a1681eb

Browse files
committed
ren lib to pkg.
1 parent a728082 commit a1681eb

7 files changed

+5
-7
lines changed

main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import (
1313
"text/tabwriter"
1414

1515
"github.com/bengarrett/zipcmt/internal/misc"
16-
zipcmt "github.com/bengarrett/zipcmt/lib"
16+
zipcmt "github.com/bengarrett/zipcmt/pkg"
1717
"github.com/gookit/color"
1818
)
1919

lib/example_posix_test.go pkg/example_posix_test.go

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
//go:build !windows
2-
// +build !windows
32

43
// © Ben Garrett https://github.com/bengarrett/zipcmt
54

@@ -9,7 +8,7 @@ import (
98
"fmt"
109
"log"
1110

12-
zipcmt "github.com/bengarrett/zipcmt/lib"
11+
zipcmt "github.com/bengarrett/zipcmt/pkg"
1312
)
1413

1514
func ExampleConfig_Clean() {

lib/example_test.go pkg/example_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"fmt"
77
"log"
88

9-
zipcmt "github.com/bengarrett/zipcmt/lib"
9+
zipcmt "github.com/bengarrett/zipcmt/pkg"
1010
"github.com/gookit/color"
1111
)
1212

lib/example_win_test.go pkg/example_win_test.go

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
//go:build windows
2-
// +build windows
32

43
// © Ben Garrett https://github.com/bengarrett/zipcmt
54

@@ -9,7 +8,7 @@ import (
98
"fmt"
109
"log"
1110

12-
zipcmt "github.com/bengarrett/zipcmt/lib"
11+
zipcmt "github.com/bengarrett/zipcmt/pkg"
1312
)
1413

1514
func ExampleConfig_clean() {

lib/log.go pkg/log.go

File renamed without changes.

lib/zipcmt.go pkg/zipcmt.go

File renamed without changes.

lib/zipcmt_test.go pkg/zipcmt_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"strings"
88
"testing"
99

10-
zipcmt "github.com/bengarrett/zipcmt/lib"
10+
zipcmt "github.com/bengarrett/zipcmt/pkg"
1111
"github.com/gookit/color"
1212
)
1313

0 commit comments

Comments
 (0)