syncthing 0.6.0

A Rust library for controlling syncthing file synchronization through its REST interface
Documentation
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::*;