keel/net/gotsrpc/decode.go
2021-10-01 16:18:28 +02:00

9 lines
234 B
Go

package keelgotsrpc
import "github.com/mitchellh/mapstructure"
// Decode decodes the custom data into the given pointer to a map or struct.
func Decode(data interface{}, v interface{}) error {
return mapstructure.Decode(data, v)
}