#![warn(missing_docs)]
#![warn(missing_debug_implementations)]
extern crate abstract_ns;
extern crate futures;
extern crate serde;
extern crate serde_json;
extern crate serde_millis;
extern crate tk_http;
extern crate tk_pool;
extern crate tokio_core;
extern crate tokio_io;
#[macro_use] extern crate log;
#[macro_use] extern crate serde_derive;
#[macro_use] extern crate failure;
use std::fmt;
mod connect;
mod peers;
mod response;
mod errors;
mod pool_log;
pub use connect::connect_local;
pub use response::ResponseFuture;
pub use peers::{PeersResponse, Peer};
pub struct Connection {
pool: connect::Pool,
}
impl fmt::Debug for Connection {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
f.debug_struct("Connection").finish()
}
}