1
2
3
4
5
6
7
8
pub mod alphabeta;
pub mod minimax;
mod utils;

pub mod prelude {
    pub use crate::alphabeta::*;
    pub use crate::minimax::*;
}