aboutsummaryrefslogtreecommitdiff
path: root/planetwars-cli/src/commands/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'planetwars-cli/src/commands/mod.rs')
-rw-r--r--planetwars-cli/src/commands/mod.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/planetwars-cli/src/commands/mod.rs b/planetwars-cli/src/commands/mod.rs
index db0be21..52fed5c 100644
--- a/planetwars-cli/src/commands/mod.rs
+++ b/planetwars-cli/src/commands/mod.rs
@@ -1,3 +1,4 @@
+mod build;
mod init;
mod run_match;
mod serve;
@@ -21,6 +22,7 @@ impl Cli {
Command::Init(command) => command.run().await,
Command::RunMatch(command) => command.run().await,
Command::Serve(command) => command.run().await,
+ Command::Build(command) => command.run().await,
}
}
}
@@ -33,4 +35,6 @@ enum Command {
RunMatch(run_match::RunMatchCommand),
/// Host local webserver
Serve(serve::ServeCommand),
+ /// Run build command for a bot
+ Build(build::BuildCommand),
}