jservice

Crates.iojservice
lib.rsjservice
version0.1.4
sourcesrc
created_at2016-05-23 07:08:35.637093
updated_at2016-10-04 01:54:12.856716
descriptionA jService API wrapper.
homepage
repositoryhttps://github.com/Vectorious/jservice-rs
max_upload_size
id5151
size19,724
Brandon King (Vectorious)

documentation

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

README

jservice-rs

Build Status

A jService API wrapper for Rust.

Documentation

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

Usage Example

extern crate jservice;
use jservice::Clue;

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

    for clue in clues {
        println!("{}", clue.question);
    }
}
Commit count: 22

cargo fmt