summaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorjakka <jakka@jakka.su>2025-10-01 13:52:04 +0300
committerjakka <jakka@jakka.su>2025-10-01 13:52:04 +0300
commit8680fbc0fab62e47a7736e5194badba84411ea7f (patch)
treeff840eef199b4343269165d66f4b336c634c3aae /src/lib.rs
parentd2672de96b22ca72be946879d2a5ee1bc1ec94b9 (diff)
moved types module
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/lib.rs b/src/lib.rs
index d059b6b..5d0e463 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -1,8 +1,10 @@
//! crate with hydrus client and traits necessary for fully using hydrus API
-/// async traits, types and client implementation
+/// async traits and client implementation
#[cfg(feature = "async")]
pub mod async_lib;
-/// sync traits, types and client implementation
+/// sync traits and client implementation
#[cfg(feature = "sync")]
pub mod sync_lib;
+/// types for hydrus API
+pub mod types;