mirror of
https://github.com/octoleo/restic.git
synced 2024-11-02 11:46:36 +00:00
31 lines
750 B
Go
31 lines
750 B
Go
package sftp
|
|
|
|
import (
|
|
"io"
|
|
"os"
|
|
)
|
|
|
|
// Interfaces are differentiated based on required returned values.
|
|
// All input arguments are to be pulled from Request (the only arg).
|
|
|
|
// FileReader should return an io.Reader for the filepath
|
|
type FileReader interface {
|
|
Fileread(Request) (io.ReaderAt, error)
|
|
}
|
|
|
|
// FileWriter should return an io.Writer for the filepath
|
|
type FileWriter interface {
|
|
Filewrite(Request) (io.WriterAt, error)
|
|
}
|
|
|
|
// FileCmder should return an error (rename, remove, setstate, etc.)
|
|
type FileCmder interface {
|
|
Filecmd(Request) error
|
|
}
|
|
|
|
// FileInfoer should return file listing info and errors (readdir, stat)
|
|
// note stat requests would return a list of 1
|
|
type FileInfoer interface {
|
|
Fileinfo(Request) ([]os.FileInfo, error)
|
|
}
|