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