//! Moves and related stuff
pub use *;
pub use Make;
/// Parsed move in SAN format
///
/// This is a convenience alias for [`san::Move`].
pub type SanMove = Move;
/// Parsed move in UCI format
///
/// This is a convenience alias for [`uci::Move`].
pub type UciMove = Move;