(g *Group)
| 192 | } |
| 193 | |
| 194 | func (s *Store) UpdateGroup(g *Group) error { |
| 195 | return s.client.Update(s.GroupPath(g.Id), g.Encode()) |
| 196 | } |
| 197 | |
| 198 | func (s *Store) DeleteGroup(gid int) error { |
| 199 | return s.client.Delete(s.GroupPath(gid)) |
no test coverage detected