package message type ( // Codec 消息编解码器 Codec interface { // Encode 编码 Encode(v interface{}) ([]byte, error) // Decode 解码 Decode(data []byte) (interface{}, error) } )