This commit is contained in:
Egor Kovetskiy
2019-06-05 18:02:39 +03:00
parent eb30d1d1fc
commit 4ffbc12fa4
5 changed files with 83 additions and 20 deletions

9
pkg/fs/fs.go Normal file
View File

@@ -0,0 +1,9 @@
package fs
import (
"io"
)
type FileSystem interface {
Open(path string) (io.ReadCloser, error)
}