diff options
Diffstat (limited to 'common/rust/src/lib.rs')
| -rw-r--r-- | common/rust/src/lib.rs | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/common/rust/src/lib.rs b/common/rust/src/lib.rs index 943d7cc..f4e27fc 100644 --- a/common/rust/src/lib.rs +++ b/common/rust/src/lib.rs @@ -1,7 +1,16 @@ -/// This crate contains shared code in all the rust projects -/// It contains utilities such as monitoring, logging and more. +/// This crate is all the utilities shared by the nova rust projects +/// It includes loging, config and protocols. pub mod config; pub mod monitoring; pub mod nats; pub mod payloads; -pub mod error;
\ No newline at end of file +pub mod error; +pub mod redis; + +pub use log as log; +pub use serde as serde; +pub use ::config as config_crate; +pub use prometheus as prometheus; +pub use ::nats as nats_crate; +pub use testcontainers as testcontainers; +pub use ::redis as redis_crate;
\ No newline at end of file |
