Bumps [github.com/shamaton/msgpack/v2](https://github.com/shamaton/msgpack) from 2.2.0 to 2.2.2. - [Release notes](https://github.com/shamaton/msgpack/releases) - [Commits](https://github.com/shamaton/msgpack/compare/v2.2.0...v2.2.2) --- updated-dependencies: - dependency-name: github.com/shamaton/msgpack/v2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
12 lines
200 B
Go
12 lines
200 B
Go
package ext
|
|
|
|
import (
|
|
"reflect"
|
|
)
|
|
|
|
type StreamDecoder interface {
|
|
Code() int8
|
|
IsType(code byte, innerType int8, dataLength int) bool
|
|
ToValue(code byte, data []byte, k reflect.Kind) (any, error)
|
|
}
|