chessfriend/position/src/position.rs

10 lines
145 B
Rust
Raw Normal View History

// Eryn Wells <eryn@erynwells.me>
mod builders;
mod position;
pub use {
2025-05-08 17:37:51 -07:00
builders::{MakeMoveError, MoveBuilder},
position::Position,
};