package encoding import "bytes" type Coder interface { Encode(s string, buf *bytes.Buffer) Decode(buf *bytes.Buffer) string }