mark/pkg/fs/fs.go

10 lines
102 B
Go
Raw Normal View History

2019-06-05 18:02:39 +03:00
package fs
import (
"io"
)
type FileSystem interface {
Open(path string) (io.ReadCloser, error)
}