1 use protocol::messages::HWProtocolMessage;
2
3 pub enum Action {
4 SendMe(String),
5 RemoveClient,
6 ByeClient(String),
5 }
7 }