mirror of
https://git.uploadfilter24.eu/lerentis/terraform-provider-gitea.git
synced 2024-11-05 10:28:12 +00:00
16 lines
518 B
Go
16 lines
518 B
Go
package msgpack
|
|
|
|
type unknownType struct{}
|
|
|
|
var unknownVal = unknownType{}
|
|
|
|
// unknownValBytes is the raw bytes of the msgpack fixext1 value we
|
|
// write to represent an unknown value. It's an extension value of
|
|
// type zero whose value is irrelevant. Since it's irrelevant, we
|
|
// set it to a single byte whose value is also zero, since that's
|
|
// the most compact possible representation.
|
|
var unknownValBytes = []byte{0xd4, 0, 0}
|
|
|
|
func (uv unknownType) MarshalMsgpack() ([]byte, error) {
|
|
return unknownValBytes, nil
|
|
}
|