mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-06 14:13:16 -06:00
18 lines
274 B
Go
18 lines
274 B
Go
|
package msgpack
|
||
|
|
||
|
type Marshaler interface {
|
||
|
MarshalMsgpack() ([]byte, error)
|
||
|
}
|
||
|
|
||
|
type Unmarshaler interface {
|
||
|
UnmarshalMsgpack([]byte) error
|
||
|
}
|
||
|
|
||
|
type CustomEncoder interface {
|
||
|
EncodeMsgpack(*Encoder) error
|
||
|
}
|
||
|
|
||
|
type CustomDecoder interface {
|
||
|
DecodeMsgpack(*Decoder) error
|
||
|
}
|