NotifyJobRemove removes a config from the dyncfg API.
(cfg C)
| 411 | |
| 412 | // NotifyJobRemove removes a config from the dyncfg API. |
| 413 | func (h *Handler[C]) NotifyJobRemove(cfg C) { |
| 414 | h.api.ConfigDelete(h.cb.ConfigID(cfg)) |
| 415 | } |
| 416 | |
| 417 | func (h *Handler[C]) jobSupportedCommands(isDyncfg bool) string { |
| 418 | cmds := make([]Command, len(h.jobCommands)) |
no test coverage detected