14 lines
198 B
Go
14 lines
198 B
Go
package testutils
|
|
|
|
import (
|
|
"io"
|
|
)
|
|
|
|
type ioFaker struct {
|
|
io.ReadWriter
|
|
}
|
|
|
|
// Close is just a dummy function to implement the io.Closer interface.
|
|
func (iof ioFaker) Close() error {
|
|
return nil
|
|
}
|