mirror of
https://github.com/mudler/luet.git
synced 2025-09-10 19:49:06 +00:00
Update vendor/
This commit is contained in:
committed by
Ettore Di Giacinto
parent
8ca6051a04
commit
9d0dc601b7
11
vendor/github.com/asdine/storm/codec/codec.go
generated
vendored
Normal file
11
vendor/github.com/asdine/storm/codec/codec.go
generated
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
// Package codec contains sub-packages with different codecs that can be used
|
||||
// to encode and decode entities in Storm.
|
||||
package codec
|
||||
|
||||
// MarshalUnmarshaler represents a codec used to marshal and unmarshal entities.
|
||||
type MarshalUnmarshaler interface {
|
||||
Marshal(v interface{}) ([]byte, error)
|
||||
Unmarshal(b []byte, v interface{}) error
|
||||
// name of this codec
|
||||
Name() string
|
||||
}
|
Reference in New Issue
Block a user