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 {}