Add first wip

This commit is contained in:
2026-04-28 08:26:35 +09:30
parent 6a8f26c06c
commit 122bde2193
4 changed files with 154 additions and 0 deletions

17
structs.go Normal file
View File

@@ -0,0 +1,17 @@
package main
import "bytes"
type bufferWriteCloser struct {
*bytes.Buffer
}
func (bwc *bufferWriteCloser) Close() error {
return nil
}
func newBWC() bufferWriteCloser {
return bufferWriteCloser{
Buffer: &bytes.Buffer{},
}
}