Nothing about this code depends on Position, so push it down to a lower layer.
13 lines
254 B
Rust
13 lines
254 B
Rust
// Eryn Wells <eryn@erynwells.me>
|
|
|
|
mod position;
|
|
|
|
#[macro_use]
|
|
mod macros;
|
|
|
|
#[cfg(test)]
|
|
#[macro_use]
|
|
mod testing;
|
|
|
|
pub use chessfriend_board::{fen, PlacePieceError, PlacePieceStrategy};
|
|
pub use position::{CastleEvaluationError, Position, ValidateMove};
|