1 2 3 4 5 6 7 8 9
mod client; mod event_stream; #[cfg(test)] mod tests; pub use client::Client; pub type Fallible<T> = Result<T, anyhow::Error>; pub use syncthing_types::*;