[board] Move position builders into a builders module

Move PositionBuilder to position_builder.rs and export it from the builders module.
This commit is contained in:
Eryn Wells 2024-01-21 09:20:03 -08:00
parent 1a907844d6
commit 4a5ae8ec59
2 changed files with 22 additions and 3 deletions

View file

@ -0,0 +1,5 @@
// Eryn Wells <eryn@erynwells.me>
mod position_builder;
pub use position_builder::Builder as PositionBuilder;