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.
|
package ws
|
|
|
|
type Packer interface {
|
|
// Unpack packs data to Entry for Write
|
|
Unpack(v interface{}) (*Entry, error)
|
|
|
|
// Pack unpacks bytes to v for Read
|
|
Pack(entry *Entry) (interface{}, error)
|
|
}
|