//! Example showing how to parse raw stash JSON data.
//!
//! Potential usage:
//!
//! $ curl http://pathofexile.com/api/public-stash-tabs \|
//! jq '.["stashes"][42]' \|
//! cargo run --example stash_from_json
//!
extern crate env_logger;
extern crate ezomyte;
extern crate log;
extern crate serde_json;
use io;
use exit;
use Stash;