Delete removes a key-value pair from the State.
(srv Service)
| 251 | |
| 252 | // Delete removes a key-value pair from the State. |
| 253 | func (s *State) deleteService(srv Service) { |
| 254 | s.Delete(s.serviceKey(srv.String())) |
| 255 | } |
| 256 | |
| 257 | // serviceKeys returns a slice containing all keys present for services in the application's State. |
| 258 | func (s *State) serviceKeys() []string { |