Split client and server into separate binaries

This commit is contained in:
2025-12-23 11:14:24 +09:00
parent a15eac607d
commit 82bfead593
10 changed files with 463 additions and 468 deletions

6
src/lib.rs Normal file
View File

@@ -0,0 +1,6 @@
#[macro_use]
extern crate prettytable;
pub mod client;
pub mod core;
pub mod server;