# 🧐 browser-paths





Get the path of the browser, support Chrome and Edge.
**[Full documentation →](https://docs.rs/browser-paths/)**
## Quick start
```sh
cargo add browser-paths
```
## Usage
```rust
use browser_paths::{BrowserKind, get_browser_path};
fn main() {
let chrome_path = get_browser_path(BrowserKind::Chrome);
println!("chrome_path: {:?}", chrome_path);
let edge_path = get_browser_path(BrowserKind::Edge);
println!("edge_path: {:?}", edge_path);
}
```
## License
Published under the [Apache-2.0](./LICENSE) license.
Made by [@UnRUST](https://github.com/un-rust) 💛
<br><br>
<a href="https://github.com/un-rust/browser-paths/graphs/contributors">
<img src="https://contrib.rocks/image?repo=un-rust/browser-paths" />
</a>
---
_🛠️ auto updated with [automd-rs](https://github.com/betterhyq/automd-rs)_