pub mod client; pub enum ClientMsg { SendMsg { content: String }, } pub enum ServerMsg { RecvMsg { content: String }, }