(in any)
| 523 | } |
| 524 | |
| 525 | func interfaceToBytes(in any) []byte { |
| 526 | if in != nil { |
| 527 | out, _ := json.Marshal(in) |
| 528 | return out |
| 529 | } |
| 530 | return nil |
| 531 | } |
| 532 | |
| 533 | func bytesToInterface(in []byte) any { |
| 534 | var out any |
no outgoing calls
no test coverage detected
searching dependent graphs…