aboutsummaryrefslogtreecommitdiff
path: root/src/message/signalproxy/objects/mod.rs
blob: a313312bc0e94186e2ea4886a2ddff09bf57161d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// mod aliasmanager;
// mod backlogmanager;

mod aliasmanager;
mod buffersyncer;
mod identity;
mod ircchannel;
mod ircuser;
mod network;
mod networkinfo;

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

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