Initial import

This commit is contained in:
2025-10-10 10:05:13 +02:00
parent 3effc1597b
commit b96b6e7f8f
164 changed files with 5473 additions and 0 deletions

15
recorder/text.go Normal file
View 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
}