1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
//! This crate provides HTTP access to the SDA services for clients.

extern crate rand;
#[macro_use]
extern crate error_chain;
extern crate serde;
extern crate serde_json;
extern crate reqwest;

extern crate sda_protocol;
extern crate sda_client_store;

mod errors;
mod tokenstore;
mod client;

pub use client::{SdaHttpClient};
pub use errors::{SdaHttpClientError};