diff options
Diffstat (limited to 'examples')
-rw-r--r-- | examples/fs_implementation/main.go | 2 | ||||
-rw-r--r-- | examples/fs_implementation/main_test.go | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/examples/fs_implementation/main.go b/examples/fs_implementation/main.go index 626cc8a..69ee0a0 100644 --- a/examples/fs_implementation/main.go +++ b/examples/fs_implementation/main.go @@ -1,5 +1,6 @@ package main +/* import ( "fmt" "io" @@ -108,3 +109,4 @@ func (fs *CustomFS) ReadDir(path string) ([]os.FileInfo, error) { func (fs *CustomFS) Join(elem ...string) string { return strings.Join(elem, separator) } +*/ diff --git a/examples/fs_implementation/main_test.go b/examples/fs_implementation/main_test.go index ed56cf1..7a7607a 100644 --- a/examples/fs_implementation/main_test.go +++ b/examples/fs_implementation/main_test.go @@ -1,5 +1,6 @@ package main +/* import ( "io/ioutil" "os" @@ -193,3 +194,4 @@ func TestReadDir(t *testing.T) { } } } +*/ |