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) }