(url: &str)
| 131 | |
| 132 | #[cfg(target_os = "macos")] |
| 133 | fn open_url(url: &str) -> std::io::Result<()> { |
| 134 | std::process::Command::new("open").arg(url).spawn().map(|_| ()) |
| 135 | } |
| 136 | |
| 137 | #[cfg(target_os = "windows")] |
| 138 | fn open_url(url: &str) -> std::io::Result<()> { |