syncthing/
lib.rs

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