Storyboard client

Linux build status

This little project is an attempt to write a storyboard api client.

Currently only the basic operations are supported and just for querying. In the future we might consider to perform write/delete operations.

Usage

Add this to your Cargo.toml

toml [dependencies] storyboard_client = "*"

and this into your code:

extern crate storyboard_client

Example

A simple example to search all the stories with the keyword stx.

```rust extern crate storyboard_client;

use storyboard_client::Client;

fn main() { let client = Client::new("https://storyboard.openstack.org/api/v1"); let stories = client.search_stories("stx").unwrap(); for s in &stories { println!("{} - {}", s.id, s.title); } } ```

See more examples in the examples folder.

TODO