summaryrefslogtreecommitdiff
path: root/src/message/mod.rs
blob: e1643e64fc2cedc718eeee3bbdd50706f454e24f (plain)
1
2
3
4
5
6
7
8
9
10
pub mod app;
mod body;
pub mod event;
pub mod handlers;
mod history;
mod id;
pub mod repo;
mod snapshot;

pub use self::{body::Body, event::Event, history::History, id::Id, snapshot::Message};