blob: 3d70b702a2b70cf055710c586b4da5281040b2a4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
//! crate with hydrus client and traits necessary for accesing hydrus API
/// this crates hydrus client implementation
pub mod client;
/// traits for accessing hydrus API
pub mod traits;
/// various objects for de/serializing requests
pub mod types;
#[cfg(test)]
mod tests;
|