This crate provides a Rust interface to the Hop API.
Add the following to your Cargo.toml
file:
toml
[dependencies]
hop = "0.1.0"
```rust use hop::{Hop, HopOptions};
let hop = Hop::newwithoptions(HopOptions { token: Some("your-token".to_string()), ..Default::default() });
let me = hop.users.me().await?;
println!("Hello, {}!", me.user.name); ```