byteCodec here is still sending proto messages. It's just they are in []byte form.
| 214 | // byteCodec here is still sending proto messages. It's just they are |
| 215 | // in []byte form. |
| 216 | type byteCodec struct{} |
| 217 | |
| 218 | func (c *byteCodec) Marshal(v any) ([]byte, error) { |
| 219 | if b, ok := v.([]byte); ok { |
nothing calls this directly
no outgoing calls
no test coverage detected