This commit is contained in:
2025-11-14 13:49:16 -05:00
parent d72a070a73
commit d384154310
7 changed files with 925 additions and 121 deletions

9
src/net/mod.rs Normal file
View File

@@ -0,0 +1,9 @@
pub mod client;
pub enum ClientMsg {
SendMsg { content: String },
}
pub enum ServerMsg {
RecvMsg { content: String },
}