doukutsu-rs/src/util/browser.rs

9 lines
225 B
Rust
Raw Normal View History

2022-11-21 14:15:51 +00:00
#[cfg(feature = "webbrowser")]
pub use webbrowser::open;
// stub for platforms webbrowser doesn't support, such as Horizon OS
#[cfg(not(feature = "webbrowser"))]
pub fn open(_url: &str) -> std::io::Result<()> {
Ok(())
}