| 19 | |
| 20 | #[derive(Clone)] |
| 21 | pub(crate) struct DelayChannels { |
| 22 | pub(crate) delay_tx: DelayTX, |
| 23 | pub(crate) delay_move_tx: DelayTX, |
| 24 | pub(crate) loop_move_tx: DelayTX, |
| 25 | } |
| 26 | |
| 27 | impl DelayChannels { |
| 28 | pub(crate) fn send_delay(&self, fg: &Command) -> Result<(), EngineError> { |
nothing calls this directly
no outgoing calls
no test coverage detected