[core,board] Move board::piece to core

Break up types in core into finer grained modules.
Update all the imports.
This commit is contained in:
Eryn Wells 2024-01-24 17:08:27 -08:00
parent 6f85305912
commit 8b2a3926b3
25 changed files with 235 additions and 227 deletions

7
core/src/errors.rs Normal file
View file

@ -0,0 +1,7 @@
// Eryn Wells <eryn@erynwells.me>
#[derive(Debug, Eq, PartialEq)]
pub struct TryFromCharError;
#[derive(Debug, Eq, PartialEq)]
pub struct TryFromStrError;