1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
mod client;
mod event_stream;
pub mod rest;
mod routes;
#[cfg(test)]
mod tests;
mod utils;

pub use client::Client;
pub use event_stream::*;

//TODO: add log + feature flag

pub type Fallible<T> = Result<T, anyhow::Error>;