(data []byte)
| 763 | } |
| 764 | |
| 765 | func (s *responseSink) writeText(data []byte) error { |
| 766 | return s.writeRaw(string(data), false) |
| 767 | } |
| 768 | |
| 769 | func (s *responseSink) writeBinary(data []byte) error { |
| 770 | return s.writeRaw(base64.StdEncoding.EncodeToString(data), true) |
no test coverage detected