(m *SlotMapping)
| 156 | } |
| 157 | |
| 158 | func (s *Store) UpdateSlotMapping(m *SlotMapping) error { |
| 159 | return s.client.Update(s.SlotPath(m.Id), m.Encode()) |
| 160 | } |
| 161 | |
| 162 | func (s *Store) ListGroup() (map[int]*Group, error) { |
| 163 | paths, err := s.client.List(s.GroupDir(), false) |
no test coverage detected