(
&mut self,
command: &ExtensionCommand,
tx: MainCommandReplySender,
)
| 697 | |
| 698 | #[tracing::instrument(level = "debug", skip(self))] |
| 699 | pub async fn handle_extension_command( |
| 700 | &mut self, |
| 701 | command: &ExtensionCommand, |
| 702 | tx: MainCommandReplySender, |
| 703 | ) -> MoosyncResult<()> { |
| 704 | tracing::debug!("Executing command {:?}", command); |
| 705 | return self.execute_command(command, tx).await; |
| 706 | } |
| 707 | |
| 708 | #[tracing::instrument(level = "debug", skip(self))] |
| 709 | pub async fn handle_runner_command( |
no test coverage detected