summaryrefslogtreecommitdiff
path: root/common/rust/src/lib.rs
diff options
context:
space:
mode:
authorMatthieu <20992787+MatthieuCoder@users.noreply.github.com>2021-09-26 01:24:34 +0400
committerGitHub <noreply@github.com>2021-09-26 01:24:34 +0400
commitfe11cf23da7e996613b1d8df503c2a085ac40d31 (patch)
treee08ed094a63b14cc79975c1f11492a477970f0d3 /common/rust/src/lib.rs
parentf2e6047c21b3ee814670b17e5901d12ac52a3508 (diff)
parent4ad3510c0552aa8b65866590873c7b13bc2d5243 (diff)
Merge pull request #6 from discordnova/webhook-receiver
Webhook receiver
Diffstat (limited to 'common/rust/src/lib.rs')
-rw-r--r--common/rust/src/lib.rs7
1 files changed, 7 insertions, 0 deletions
diff --git a/common/rust/src/lib.rs b/common/rust/src/lib.rs
new file mode 100644
index 0000000..943d7cc
--- /dev/null
+++ b/common/rust/src/lib.rs
@@ -0,0 +1,7 @@
+/// This crate contains shared code in all the rust projects
+/// It contains utilities such as monitoring, logging and more.
+pub mod config;
+pub mod monitoring;
+pub mod nats;
+pub mod payloads;
+pub mod error; \ No newline at end of file