(vs ...interface{})
| 130 | } |
| 131 | |
| 132 | func (a *ShareDiff) Add(vs ...interface{}) { |
| 133 | for _, v := range vs { |
| 134 | a.create = append(a.create, v.(*SyncShare)) |
| 135 | } |
| 136 | } |
| 137 | func (a *ShareDiff) Update(vs ...interface{}) { |
| 138 | } |
| 139 | func (a *ShareDiff) Delete(vs ...interface{}) { |
nothing calls this directly
no outgoing calls
no test coverage detected