| 101 | } |
| 102 | |
| 103 | type bytesDecoder struct { |
| 104 | s *bufio.Scanner |
| 105 | decoder func(string) ([]byte, error) |
| 106 | } |
| 107 | |
| 108 | func (d *bytesDecoder) Decode(i any) error { |
| 109 | buf, ok := i.(*[]byte) |
nothing calls this directly
no outgoing calls
no test coverage detected