github.com/imannamdari/v2ray-core/v5@v5.0.5/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)