You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
357 B
Go
19 lines
357 B
Go
package message
|
|
|
|
type BinarySerializer struct {
|
|
}
|
|
|
|
func NewBinarySerializer() Serializer {
|
|
return &BinarySerializer{}
|
|
}
|
|
|
|
func (b *BinarySerializer) Marshal(i interface{}) ([]byte, error) {
|
|
//TODO implement me
|
|
panic("implement me")
|
|
}
|
|
|
|
func (b *BinarySerializer) Unmarshal(bytes []byte, i interface{}) error {
|
|
//TODO implement me
|
|
panic("implement me")
|
|
}
|