aboutsummaryrefslogtreecommitdiff
path: root/planetwars-cli/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'planetwars-cli/src/lib.rs')
-rw-r--r--planetwars-cli/src/lib.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/planetwars-cli/src/lib.rs b/planetwars-cli/src/lib.rs
index de9905d..b71164f 100644
--- a/planetwars-cli/src/lib.rs
+++ b/planetwars-cli/src/lib.rs
@@ -9,7 +9,7 @@ use std::collections::HashMap;
use std::path::{Path, PathBuf};
#[derive(Serialize, Deserialize, Debug)]
-struct ProjectConfig {
+struct WorkspaceConfig {
bots: HashMap<String, BotConfig>,
}
@@ -27,8 +27,8 @@ pub async fn run() {
}
}
-fn resolve_bot_config(project_dir: &Path, config: BotConfig) -> BotConfig {
- let mut path = PathBuf::from(project_dir);
+fn resolve_bot_config(workspace_dir: &Path, config: BotConfig) -> BotConfig {
+ let mut path = PathBuf::from(workspace_dir);
path.push(&config.path);
BotConfig {
path: path.to_str().unwrap().to_string(),