(items []*metadbmodel.WANIP)
| 778 | } |
| 779 | |
| 780 | func (c *Cache) AddWANIPs(items []*metadbmodel.WANIP) { |
| 781 | for _, item := range items { |
| 782 | c.DiffBaseDataSet.AddWANIP(item, c.Sequence, c.ToolDataSet) |
| 783 | c.ToolDataSet.AddWANIP(item) |
| 784 | } |
| 785 | } |
| 786 | |
| 787 | func (c *Cache) DeleteWANIPs(lcuuids []string) { |
| 788 | for _, lcuuid := range lcuuids { |
no test coverage detected