google-search 0.1.1

Open default browser to Google search results for a given query string.
Documentation
# google-search

Open default browser to Google search results for a given query string.

## Usage

Add to your Cargo.toml:

```toml
[dependencies]
google-search = "0.1"
```

Example:

```rust
use google_search::search;

fn main() -> Result<(), String> {
    search("Trae AI IDE")?;
    Ok(())
}
```

## Notes
- This library opens your default web browser to `https://www.google.com/search?q=...`.
- Requires a desktop environment and a default browser configured.

## License

MIT