summaryrefslogtreecommitdiff
path: root/src/channel/mod.rs
diff options
context:
space:
mode:
authorKit La Touche <kit@transneptune.net>2024-10-03 23:30:42 -0400
committerKit La Touche <kit@transneptune.net>2024-10-03 23:30:42 -0400
commitd50b1b56c011c03c7d8a95242af404b727e91a80 (patch)
treeefe3408f6a8ef669981826d1a29d16a24b460d89 /src/channel/mod.rs
parent30c13478d61065a512f5bc8824fecbf2ee6afc81 (diff)
parent7f12fd41c2941a55a6437f24e4f780104a718790 (diff)
Merge branch 'main' into feature-frontend
Diffstat (limited to 'src/channel/mod.rs')
-rw-r--r--src/channel/mod.rs7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/channel/mod.rs b/src/channel/mod.rs
index 9f79dbb..eb8200b 100644
--- a/src/channel/mod.rs
+++ b/src/channel/mod.rs
@@ -1,4 +1,9 @@
pub mod app;
+pub mod event;
+mod history;
+mod id;
+pub mod repo;
mod routes;
+mod snapshot;
-pub use self::routes::router;
+pub use self::{event::Event, history::History, id::Id, routes::router, snapshot::Channel};