jservice-rs

Build Status

A jService API wrapper for Rust.

Documentation

https://vectorious.github.io/jservice-rs/

Usage Example

```rust extern crate jservice; use jservice::Clue;

fn main() { // get 20 random clues let clues: Vec = jservice::get_random(Some(20)).unwrap();

for clue in clues {
    println!("{}", clue.question);
}

} ```