Write proxies the write operation to the underlying writer.
(data []byte)
| 76 | |
| 77 | // Write proxies the write operation to the underlying writer. |
| 78 | func (t *Target) Write(data []byte) (int, error) { |
| 79 | return t.writer.Write(data) |
| 80 | } |
| 81 | |
| 82 | // TargetParser is responsible for creating Target objects. |
| 83 | type TargetParser struct { |
no outgoing calls