blob: d059b6ba09bd39ffe340cabfb0cfc119e6b25f31 (
plain)
1
2
3
4
5
6
7
8
|
//! crate with hydrus client and traits necessary for fully using hydrus API
/// async traits, types and client implementation
#[cfg(feature = "async")]
pub mod async_lib;
/// sync traits, types and client implementation
#[cfg(feature = "sync")]
pub mod sync_lib;
|