github.com/v2fly/v2ray-core/v5@v5.16.2-0.20240507031116-8191faa6e095/common/platform/filesystem/fsifce/ifce.go (about) 1 package fsifce 2 3 import "io" 4 5 type FileSeekerFunc func(path string) (io.ReadSeekCloser, error) 6 7 type FileReaderFunc func(path string) (io.ReadCloser, error) 8 9 type FileWriterFunc func(path string) (io.WriteCloser, error)