chore(refact): rename modules with 'trictrac-' prefixes

This commit is contained in:
Henri Bourcereau 2026-02-07 17:37:16 +01:00
parent 54d9ad70ad
commit 257665c546
20 changed files with 157 additions and 154 deletions

View file

@ -4,7 +4,7 @@ pub mod training_common;
pub mod trictrac_board;
use log::debug;
use store::{CheckerMove, Color, GameEvent, GameState, PlayerId, PointsRules, Stage, TurnStage};
use trictrac_store::{CheckerMove, Color, GameEvent, GameState, PlayerId, PointsRules, Stage, TurnStage};
pub use strategy::default::DefaultStrategy;
pub use strategy::dqnburn::DqnBurnStrategy;
pub use strategy::erroneous_moves::ErroneousStrategy;
@ -144,7 +144,7 @@ impl Bot {
#[cfg(test)]
mod tests {
use super::*;
use store::{Dice, Stage};
use trictrac_store::{Dice, Stage};
#[test]
fn test_new() {