//! # WEBSERVICES Client
//!
//! `wwsvc_rs` is a web client which is used to consume SoftENGINE's WEBSERVICES, a proprietary API for their software WEBWARE.
extern crate reqwest;
extern crate encoding_rs;
extern crate httpdate;
extern crate md5;
extern crate serde;
extern crate serde_json;
/// Module containing the pagination cursor.
/// Module containing the app hash, which is needed for each request.
pub use Method;
pub use Value;
pub use Cursor;
pub use AppHash;
/// Module containing the client.
pub use WebwareClient;
pub use Response;
pub use Credentials;