mirror of
https://github.com/kopia/kopia.git
synced 2026-03-14 20:26:51 -04:00
10 lines
178 B
Go
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)
|
|
}
|