45f10e2f81
- Using cgofuse to be compatible with multiple OSes - Refactor to make possible better testing - Add a bunch of tests - Add code coverage Signed-off-by: Antonio Navarro Perez <antnavper@gmail.com>
9 lines
87 B
Go
9 lines
87 B
Go
package iio
|
|
|
|
import "io"
|
|
|
|
type Reader interface {
|
|
io.ReaderAt
|
|
io.Closer
|
|
io.Reader
|
|
}
|