aboutsummaryrefslogtreecommitdiff
path: root/src/event.rs
blob: 70ec81673561e95010bc829613db35b838c812c0 (plain)
1
2
3
4
5
6
7
8
9
use command;
use reply;

pub enum Event<'a> {
    Command(command::Command<'a>),
    Reply(reply::Reply<'a>),
    Connected,
    Disconnected
}