============================================================================ Fory Setup ============================================================================
()
| 33 | // ============================================================================ |
| 34 | |
| 35 | func newFory() *fory.Fory { |
| 36 | f := fory.New( |
| 37 | fory.WithXlang(true), |
| 38 | fory.WithTrackRef(false), |
| 39 | fory.WithCompatible(true), |
| 40 | ) |
| 41 | registerForyTypes(f) |
| 42 | return f |
| 43 | } |
| 44 | |
| 45 | func newForyReader() *fory.Fory { |
| 46 | f := fory.New( |
no test coverage detected