chess_tui/lib.rs
1/// Application.
2pub mod app;
3
4/// Terminal events handler.
5pub mod event;
6
7/// Widget renderer.
8pub mod ui;
9
10pub mod server;
11
12/// Event handler.
13pub mod handler;
14
15// Game related structures
16pub mod game_logic;
17
18// Constants for the app
19pub mod constants;
20
21// Utils methods for the board
22pub mod utils;
23
24// Logging
25pub mod logging;
26
27// Chess pieces
28pub mod pieces;
29
30// Configuration
31pub mod config;
32
33// Skin
34pub mod skin;
35
36// Lichess
37pub mod lichess;
38
39// Sound effects
40pub mod sound;