Initial import
This commit is contained in:
15
recorder/text.go
Normal file
15
recorder/text.go
Normal file
@@ -0,0 +1,15 @@
|
||||
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
|
||||
}
|
Reference in New Issue
Block a user