(token string)
| 236 | } |
| 237 | |
| 238 | func (s *Store) DeleteProxy(token string) error { |
| 239 | return s.client.Delete(s.ProxyPath(token)) |
| 240 | } |
| 241 | |
| 242 | func (s *Store) LoadSentinel(must bool) (*Sentinel, error) { |
| 243 | b, err := s.client.Read(s.SentinelPath(), must) |
no test coverage detected