Skip to content

Commit e07274c

Browse files
authored
Merge pull request #22 from LandonTClipp/afero
Upgrading afero dependency
2 parents 1e22e38 + d0707b6 commit e07274c

File tree

6 files changed

+119
-333
lines changed

6 files changed

+119
-333
lines changed

file.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package pathlib
22

3-
import "github.com/LandonTClipp/afero"
3+
import "github.com/spf13/afero"
44

55
// File represents a file in the filesystem. It inherits the afero.File interface
66
// but might also include additional functionality.

go.mod

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,11 @@ module github.com/chigopher/pathlib
33
go 1.14
44

55
require (
6-
github.com/LandonTClipp/afero v1.3.6-0.20200907052150-97f9d166c7a3
6+
github.com/davecgh/go-spew v1.1.1 // indirect
7+
github.com/kr/pretty v0.1.0 // indirect
78
github.com/pkg/errors v0.9.1
8-
github.com/rs/zerolog v1.18.0
9+
github.com/spf13/afero v1.4.0
10+
github.com/stretchr/objx v0.1.1 // indirect
911
github.com/stretchr/testify v1.6.1
10-
github.com/vektra/mockery/v2 v2.1.0 // indirect
12+
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect
1113
)

0 commit comments

Comments
 (0)