syncthing-async 0.1.0

A Rust library for controlling syncthing file synchronization through its REST interface
Documentation
1
2
3
4
5
6
7
8
mod client;
mod events;
#[cfg(test)]
mod tests;

pub use client::Client;

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