Route an event through the TUI channel when available, otherwise print directly.
(&self, event: ServerEvent)
| 177 | |
| 178 | /// Route an event through the TUI channel when available, otherwise print directly. |
| 179 | fn emit(&self, event: ServerEvent) { |
| 180 | crate::tui::events::emit_or_print(&self.event_sender, event); |
| 181 | } |
| 182 | |
| 183 | /// Ensures the proxy for the given configuration is running and healthy. |
| 184 | /// |
no test coverage detected