(p *Proxy)
| 232 | } |
| 233 | |
| 234 | func (s *Store) UpdateProxy(p *Proxy) error { |
| 235 | return s.client.Update(s.ProxyPath(p.Token), p.Encode()) |
| 236 | } |
| 237 | |
| 238 | func (s *Store) DeleteProxy(token string) error { |
| 239 | return s.client.Delete(s.ProxyPath(token)) |
no test coverage detected