10 lines
130 B
Rust
10 lines
130 B
Rust
pub mod client;
|
|
|
|
pub enum ClientMsg {
|
|
SendMsg { content: String },
|
|
}
|
|
|
|
pub enum ServerMsg {
|
|
RecvMsg { content: String },
|
|
}
|