cheshire_chess 0.2.3

A terminal chess app — tactics training, live multiplayer, game rooms, and custom pieces
Documentation
1
2
3
4
5
6
7
8
9
use cheshire_chess::server::start_central_server;

fn main() {
    println!("Starting Cheshire Chess game server on port 7880...");
    start_central_server();
    loop {
        std::thread::sleep(std::time::Duration::from_secs(3600));
    }
}