summaryrefslogtreecommitdiff
path: root/common/rust/src/lib.rs
diff options
context:
space:
mode:
authorMatthieu <matthieu@developershouse.xyz>2021-10-18 13:29:07 +0400
committerMatthieu <matthieu@developershouse.xyz>2021-10-18 13:29:07 +0400
commit9023aa354902844b7d6100f55c3064afedd88966 (patch)
tree195ddb0e3d3ffecf93f1a060325e429dd2356c3e /common/rust/src/lib.rs
parentb94b0552f81e667bec31352901bbc8c76f1b4216 (diff)
parenta80124cfe207cf99fb170d1050b4f609c6a169d3 (diff)
Merge branch 'nats-structs-discord-gateway'
Diffstat (limited to 'common/rust/src/lib.rs')
-rw-r--r--common/rust/src/lib.rs20
1 files changed, 11 insertions, 9 deletions
diff --git a/common/rust/src/lib.rs b/common/rust/src/lib.rs
index f4e27fc..fa2c6fc 100644
--- a/common/rust/src/lib.rs
+++ b/common/rust/src/lib.rs
@@ -1,16 +1,18 @@
+pub use ::config as config_crate;
+pub use ::nats as nats_crate;
+pub use ::redis as redis_crate;
+pub use log;
+pub use prometheus;
+pub use serde;
+pub use testcontainers;
+
/// This crate is all the utilities shared by the nova rust projects
-/// It includes loging, config and protocols.
+/// It includes logging, config and protocols.
pub mod config;
+pub mod discord_models;
+pub mod error;
pub mod monitoring;
pub mod nats;
pub mod payloads;
-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