From 0e61598937df051ebd8bba81944d5c8f7f8d437c Mon Sep 17 00:00:00 2001 From: Eryn Wells Date: Mon, 16 Jun 2025 13:49:53 -0700 Subject: [PATCH] [explorer] Remove make_command module --- explorer/src/main.rs | 2 -- explorer/src/make_command.rs | 7 +++++++ 2 files changed, 7 insertions(+), 2 deletions(-) create mode 100644 explorer/src/make_command.rs diff --git a/explorer/src/main.rs b/explorer/src/main.rs index b19a44a..77ef939 100644 --- a/explorer/src/main.rs +++ b/explorer/src/main.rs @@ -1,7 +1,5 @@ // Eryn Wells -mod make_command; - use chessfriend_board::ZobristState; use chessfriend_board::{Board, fen::FromFenStr}; use chessfriend_core::random::RandomNumberGenerator; diff --git a/explorer/src/make_command.rs b/explorer/src/make_command.rs new file mode 100644 index 0000000..ef3d809 --- /dev/null +++ b/explorer/src/make_command.rs @@ -0,0 +1,7 @@ +// Eryn Wells + +use clap::ArgMatches; + +pub enum MakeCommandError {} + +pub struct MakeCommand {}