diff options
| author | jakka <jakka@jakka.su> | 2025-10-01 12:57:32 +0300 |
|---|---|---|
| committer | jakka <jakka@jakka.su> | 2025-10-01 12:57:32 +0300 |
| commit | 228f24cb3020b719540fc9665e4aff21528fc69e (patch) | |
| tree | 83194bfda6c6d97ffec81aef2545802b859b4e5f /src/lib.rs | |
| parent | c177ba7a49caf63582719a4086e5032e2c939cfa (diff) | |
broke down modules and renamed them
Diffstat (limited to 'src/lib.rs')
| -rw-r--r-- | src/lib.rs | 17 |
1 files changed, 6 insertions, 11 deletions
@@ -1,13 +1,8 @@ -//! crate with hydrus client and traits necessary for accesing hydrus API +//! crate with hydrus client and traits necessary for fully using hydrus API -/// this crate's hydrus client async implementation +/// async traits, types and client implementation #[cfg(feature = "async")] -pub mod client_async; -/// traits for accessing hydrus API -#[cfg(feature = "async")] -pub mod traits_async; -/// various objects for de/serializing requests -pub mod types; - -#[cfg(test)] -mod tests; +pub mod async_lib; +/// sync traits, types and client implementation +#[cfg(feature = "sync")] +pub mod sync_lib; |
