aboutsummaryrefslogtreecommitdiff
path: root/src/message/signalproxy/objects/mod.rs
blob: a84f6fa00205d5e781dcbba6c1392ce698b18e9a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// mod aliasmanager;
// mod backlogmanager;

mod buffersyncer;
mod identity;

pub use buffersyncer::*;
pub use identity::*;

pub trait Act {
    fn act(self: Self);
}