(objs []WaveObj)
| 79 | } |
| 80 | |
| 81 | func MakeUpdates(objs []WaveObj) []WaveObjUpdate { |
| 82 | rtn := make([]WaveObjUpdate, 0, len(objs)) |
| 83 | for _, obj := range objs { |
| 84 | rtn = append(rtn, MakeUpdate(obj)) |
| 85 | } |
| 86 | return rtn |
| 87 | } |
| 88 | |
| 89 | func (update *WaveObjUpdate) UnmarshalJSON(data []byte) error { |
| 90 | var objMap map[string]any |
no test coverage detected