aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/github.com/shurcooL/httpfs/vfsutil/file.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/shurcooL/httpfs/vfsutil/file.go')
-rw-r--r--vendor/github.com/shurcooL/httpfs/vfsutil/file.go21
1 files changed, 0 insertions, 21 deletions
diff --git a/vendor/github.com/shurcooL/httpfs/vfsutil/file.go b/vendor/github.com/shurcooL/httpfs/vfsutil/file.go
deleted file mode 100644
index 4cb0dada..00000000
--- a/vendor/github.com/shurcooL/httpfs/vfsutil/file.go
+++ /dev/null
@@ -1,21 +0,0 @@
-package vfsutil
-
-import (
- "net/http"
- "os"
-)
-
-// File implements http.FileSystem using the native file system restricted to a
-// specific file served at root.
-//
-// While the FileSystem.Open method takes '/'-separated paths, a File's string
-// value is a filename on the native file system, not a URL, so it is separated
-// by filepath.Separator, which isn't necessarily '/'.
-type File string
-
-func (f File) Open(name string) (http.File, error) {
- if name != "/" {
- return nil, &os.PathError{Op: "open", Path: name, Err: os.ErrNotExist}
- }
- return os.Open(string(f))
-}