aboutsummaryrefslogtreecommitdiffstats
path: root/filamento/src/pep.rs
blob: c71d8432784998d54d65d2ced1810317ca800ea1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// in commandmessage
// pub struct Publish {
//     item: Item,
//     node: Option<String>,
//     // no need for node, as item has the node
// }
//
// in updatemessage
// pub struct Event {
//     from: JID,
//     item: Item,
// }

#[derive(Clone, Debug)]
pub enum Item {
    Nick(String),
}