From 352801f08eadd0f87a7b0a53c9824abcbec38c16 Mon Sep 17 00:00:00 2001 From: Adphi <philippe.adrien.nousse@gmail.com> Date: Mon, 27 Jan 2020 20:28:22 +0100 Subject: [PATCH] renamed package affuse --- README.md | 6 +++--- dir.go | 2 +- example/memfs.go | 4 ++-- file.go | 2 +- fs.go | 2 +- go.mod | 2 +- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index dba3cbe..41efba0 100755 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Afero Fuse (WiP) +# [WIP] affuse: Afero Fuse Afero Fuse is a small wrapper around [fuse](bazil.org/fuse) allowing to mount any [afero file system](github.com/spf13/afero). @@ -16,7 +16,7 @@ import ( "github.com/sirupsen/logrus" "github.com/spf13/afero" - "gitlab.bertha.cloud/adphi/afero-fuse" + "gitlab.bertha.cloud/adphi/affuse" ) func main() { @@ -27,7 +27,7 @@ func main() { } defer os.RemoveAll(mountPoint) mem := afero.NewMemMapFs() - fs, err := afero_fuse.New(mem) + fs, err := affuse.New(mem) if err != nil { logrus.Fatalf("failed to create fs: %v", err) } diff --git a/dir.go b/dir.go index 38ad425..5180583 100755 --- a/dir.go +++ b/dir.go @@ -1,4 +1,4 @@ -package afero_fuse +package affuse import ( "context" diff --git a/example/memfs.go b/example/memfs.go index 51714f6..bb1abdf 100755 --- a/example/memfs.go +++ b/example/memfs.go @@ -9,7 +9,7 @@ import ( "github.com/sirupsen/logrus" "github.com/spf13/afero" - "gitlab.bertha.cloud/adphi/afero-fuse" + "gitlab.bertha.cloud/adphi/affuse" ) func main() { @@ -20,7 +20,7 @@ func main() { } defer os.RemoveAll(mountPoint) mem := afero.NewMemMapFs() - fs, err := afero_fuse.New(mem) + fs, err := affuse.New(mem) if err != nil { logrus.Fatalf("failed to create fs: %v", err) } diff --git a/file.go b/file.go index a97cfce..dd8fe17 100755 --- a/file.go +++ b/file.go @@ -1,4 +1,4 @@ -package afero_fuse +package affuse import ( "context" diff --git a/fs.go b/fs.go index ca5bfb9..15d0f20 100755 --- a/fs.go +++ b/fs.go @@ -1,4 +1,4 @@ -package afero_fuse +package affuse import ( "context" diff --git a/go.mod b/go.mod index e2f1013..bc7e835 100755 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module gitlab.bertha.cloud/adphi/afero-fuse +module gitlab.bertha.cloud/adphi/affuse go 1.13 -- GitLab