Small library for opening a uri with an appropriate program.
Usage
use open
if let Err = open
Small library for opening a uri with an appropriate program.
use mime_open::open
if let Err(e) = open("https://duckduckgo.com") {
eprintln!("Error opening url: {}", e);
}