pub async fn dispatch_command_with_ref(
command: Commands,
config_service: &dyn ConfigService,
output_mode: OutputMode,
) -> Result<()>Expand description
Dispatch command with borrowed config service reference.
This version is used by the CLI interface where we have a borrowed reference
to the configuration service rather than an owned Arc. The
output_mode parameter is plumbed for per-command renderer
integration (see dispatch_command_with_mode).