[board] Clean up imports in fen.rs

This commit is contained in:
Eryn Wells 2024-01-26 12:59:05 -08:00
parent f08a4c66a1
commit 6292421b1c

View file

@ -1,11 +1,7 @@
// Eryn Wells <eryn@erynwells.me>
use crate::{
piece::{Piece, PlacedPiece},
r#move::Castle,
Color, Position,
};
use chessfriend_core::{File, Rank, Square};
use crate::{r#move::Castle, Position};
use chessfriend_core::{Color, File, Piece, PlacedPiece, Rank, Square};
use std::fmt::Write;
#[derive(Clone, Copy, Debug, Eq, PartialEq)]