Compare commits

...

1 Commits
v3.10.1 ... v3

Author SHA1 Message Date
4095e7a426 add codec.RawMessage support
All checks were successful
test / test (push) Successful in 3m26s
Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
2024-12-23 20:38:15 +03:00

View File

@ -61,6 +61,7 @@ func (c *iso8583Codec) Unmarshal(b []byte, v interface{}, opts ...codec.Option)
return nil
case codec.RawMessage:
copy(m, b)
return nil
}
var spec *iso8583.MessageSpec