ifce.go 219 B

123456789
  1. package fsifce
  2. import "io"
  3. type FileSeekerFunc func(path string) (io.ReadSeekCloser, error)
  4. type FileReaderFunc func(path string) (io.ReadCloser, error)
  5. type FileWriterFunc func(path string) (io.WriteCloser, error)