1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/// Provides a TCP client for [GetEventStore] datatbase.

extern crate core;
extern crate bytes;
extern crate uuid;
extern crate timer;
extern crate time;
extern crate futures;
extern crate protobuf;
extern crate tokio;

extern crate serde;
#[macro_use]
extern crate serde_derive;
extern crate serde_json;

#[macro_use]
extern crate log;

mod internal;
mod connection;
pub mod types;

pub use connection::{
    Connection,
    ConnectionBuilder,
};

pub use internal::{
    commands,
    operations::OperationError
};

pub use types::*;