An open API service indexing awesome lists of open source software.

https://github.com/overdrivenpotato/url_open

rust: open urls in the default browser
https://github.com/overdrivenpotato/url_open

Last synced: 7 months ago
JSON representation

rust: open urls in the default browser

Awesome Lists containing this project

README

          

# url_open
A simple crate to open URLs in the default web browser.

### Usage

```rust
extern crate url;
extern crate url_open;

use url::Url;
use url_open::UrlOpen;

fn main() {
Url::parse("https://github.com/overdrivenpotato/url_open").unwrap().open();
}
```