()
| 140 | } |
| 141 | |
| 142 | func (a *ShareDiff) ToAdd() []interface{} { |
| 143 | var res []interface{} |
| 144 | |
| 145 | for _, v := range a.create { |
| 146 | res = append(res, v) |
| 147 | } |
| 148 | return res |
| 149 | } |
| 150 | func (a *ShareDiff) ToUpdate() []interface{} { |
| 151 | return nil |
| 152 | } |
nothing calls this directly
no outgoing calls
no test coverage detected