Create account

replied 1d
Ok(serde_json::from_slice(&out)?)
}

fn execute_str(args: Vec<&str>) -> Result<String> {
let out = execute_impl(args)?;
Ok(String::from_utf8(out)?)
}