Skip to content

Release v1.0.0

Latest
Compare
Choose a tag to compare
@gnolizuh gnolizuh released this 21 Mar 08:19

Release v1.0.0

Features

  • Usage exactly similar to std.json
  • Flexible customization with options
  • More compatible, we supported both AMF0 & AMF3

Demo

var bs []byte
buf := bytes.NewBuffer(bs)

in := 1
NewEncoder().WithWriter(buf).Encode(&in)

var out int
NewDecoder().WithReader(buf).Decode(&out)