hop

This crate provides a Rust interface to the Hop API.

Installation

Add the following to your Cargo.toml file:

toml [dependencies] hop = "0.1.0"

Usage

```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); ```