1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/// Application.
pub mod app;

/// Terminal events handler.
pub mod event;

/// Widget renderer.
pub mod ui;

/// Terminal user interface.
pub mod tui;

/// Event handler.
pub mod handler;

// Chess pieces structures
pub mod pieces;

// Board structure
pub mod board;

// Constats for the app
pub mod constants;

// Utils methods for the board
pub mod utils;

// popups render methods
pub mod popups;