13 lines
264 B
Rust
13 lines
264 B
Rust
// Eryn Wells <eryn@erynwells.me>
|
|
|
|
mod position;
|
|
|
|
#[macro_use]
|
|
mod macros;
|
|
|
|
pub use chessfriend_board::{fen, PlacePieceError, PlacePieceStrategy};
|
|
pub use chessfriend_moves::{GeneratedMove, ValidateMove};
|
|
pub use position::Position;
|
|
|
|
#[macro_use]
|
|
pub mod testing;
|