mirror of
https://github.com/kopia/kopia.git
synced 2026-03-15 12:50:29 -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)
|
|
}
|