aboutsummaryrefslogtreecommitdiff
path: root/vendor/github.com/homemade/scl/file_system.go
diff options
context:
space:
mode:
authorNiall Sheridan <nsheridan@gmail.com>2019-07-07 21:33:44 +0100
committerNiall Sheridan <nsheridan@gmail.com>2019-07-07 21:33:44 +0100
commit8c12c6939aab9106db14ec2d11d983bc5b29fb2c (patch)
treef9dc8a7d167c6355e47a65c52d4eb7b9ea03e6c8 /vendor/github.com/homemade/scl/file_system.go
parent0bd454cc448b812da6c693b451d86ff4cadbb6b2 (diff)
Switch to modules
Diffstat (limited to 'vendor/github.com/homemade/scl/file_system.go')
-rw-r--r--vendor/github.com/homemade/scl/file_system.go19
1 files changed, 0 insertions, 19 deletions
diff --git a/vendor/github.com/homemade/scl/file_system.go b/vendor/github.com/homemade/scl/file_system.go
deleted file mode 100644
index 959e096..0000000
--- a/vendor/github.com/homemade/scl/file_system.go
+++ /dev/null
@@ -1,19 +0,0 @@
-package scl
-
-import (
- "io"
- "time"
-)
-
-/*
-A FileSystem is a representation of entities with names and content that can be
-listed using stangard glob syntax and read by name. The typical implementation
-for this is a local disk filesystem, but it could be anything – records in a
-database, objects on AWS S3, the contents of a zip file, virtual files stored
-inside a binary, and so forth. A FileSystem is required to instantiate the
-standard Parser implementation.
-*/
-type FileSystem interface {
- Glob(pattern string) ([]string, error)
- ReadCloser(path string) (content io.ReadCloser, lastModified time.Time, err error)
-}