(
runner: &mut R,
args: &[&str],
)
| 225 | } |
| 226 | |
| 227 | pub fn run_openclaw_command<R: OpenclawRunner>( |
| 228 | runner: &mut R, |
| 229 | args: &[&str], |
| 230 | ) -> Result<OpenclawCommandOutput, Box<dyn Error>> { |
| 231 | run_openclaw_raw( |
| 232 | runner, |
| 233 | args.iter().map(|s| (*s).to_string()).collect(), |
| 234 | OpenclawApprovalMode::PromptUser, |
| 235 | ) |
| 236 | } |
| 237 | |
| 238 | pub fn apply_onboard_openclaw_config<R: OpenclawRunner>( |
| 239 | runner: &mut R, |
no test coverage detected