diff options
| author | Taras Madan <tarasmadan@google.com> | 2024-05-08 14:17:02 +0200 |
|---|---|---|
| committer | Taras Madan <tarasmadan@google.com> | 2024-05-08 12:48:31 +0000 |
| commit | 0ac372459159c5632ae7ce9778e9be771708a9b3 (patch) | |
| tree | 9c6a979cada5c22b46dd3c5ad4b0d706f2252272 /vendor/github.com/chigopher/pathlib/file.go | |
| parent | 69141a688b25b2d33daf570507dbb13a3c80e5d9 (diff) | |
vendor: go mod vendor
We don't want to download mockery every time.
Diffstat (limited to 'vendor/github.com/chigopher/pathlib/file.go')
| -rw-r--r-- | vendor/github.com/chigopher/pathlib/file.go | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/vendor/github.com/chigopher/pathlib/file.go b/vendor/github.com/chigopher/pathlib/file.go new file mode 100644 index 000000000..82e43e1fd --- /dev/null +++ b/vendor/github.com/chigopher/pathlib/file.go @@ -0,0 +1,9 @@ +package pathlib + +import "github.com/spf13/afero" + +// File represents a file in the filesystem. It inherits the afero.File interface +// but might also include additional functionality. +type File struct { + afero.File +} |
