Files
kopia/fs/reader.go
Jarek Kowalski 42a6aec704 work in progress
2016-04-23 13:36:16 -07:00

10 lines
178 B
Go

package fs
import "io"
type Reader interface {
GetEntry(path string) (Entry, error)
ReadDirectory(path string) (Directory, error)
Open(path string) (io.ReadCloser, error)
}