| 67 | type EcmaArray map[string]any |
| 68 | |
| 69 | type AMF struct { |
| 70 | Buffer |
| 71 | } |
| 72 | |
| 73 | func ReadAMF[T string | float64 | bool | map[string]any](amf *AMF) (result T) { |
| 74 | value, err := amf.Unmarshal() |
nothing calls this directly
no outgoing calls
no test coverage detected