1pub mod bitboard; 2pub mod constants; 3pub mod lineargame; 4pub mod piece; 5pub mod square; 6pub mod state; 7pub mod uci; 8 9#[cfg(test)] 10mod tests { 11 #[test] 12 fn it_works() { 13 assert_eq!(2 + 2, 4); 14 } 15}