16 lines
221 B
Go
16 lines
221 B
Go
package recorder
|
|
|
|
import "io"
|
|
|
|
type textRecorder struct {
|
|
io.WriteCloser
|
|
}
|
|
|
|
func (r textRecorder) Reads() io.WriteCloser {
|
|
return r.WriteCloser
|
|
}
|
|
|
|
func (r textRecorder) Writes() io.WriteCloser {
|
|
return r.WriteCloser
|
|
}
|