1
0
Fork 0
golang-github-nicholas-fedo.../internal/testutils/iofaker.go
Daniel Baumann c0c4addb85
Adding upstream version 0.8.9.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2025-05-22 10:16:14 +02:00

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
}