summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2024-02-02 17:28:09 +0200
committerLars Wirzenius <liw@liw.fi>2024-02-02 17:43:59 +0200
commitf298cc3ebd8bcb72ce530558b0d112c6da856e93 (patch)
treeecdcfdfbc48ddb247c3e9ead13118758c274b6e6
parent30ea57549e7a5015541f3b58cbe71773a372d9c1 (diff)
downloadradicle-ci-broker-f298cc3ebd8bcb72ce530558b0d112c6da856e93.tar.gz
feat(src/lib.rs): allow use of new modules
Signed-off-by: Lars Wirzenius <liw@liw.fi>
-rw-r--r--src/lib.rs5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 4e672ff..428d3de 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -5,7 +5,12 @@
//! node, filter the events, and to communicate with a adapter spawned
//! as a child process.
+pub mod adapter;
+pub mod broker;
pub mod config;
pub mod error;
pub mod event;
pub mod msg;
+pub mod run;
+#[cfg(test)]
+pub mod test;