Skip to content

Commit 110fb85

Browse files
committed
feat(cli/info): show templates dir
1 parent e854000 commit 110fb85

File tree

1 file changed

+5
-3
lines changed
  • crates/rullm-cli/src/commands

1 file changed

+5
-3
lines changed

crates/rullm-cli/src/commands/info.rs

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,18 +23,20 @@ impl InfoArgs {
2323
let config_path = cli_config.config_base_path.join(CONFIG_FILE_NAME);
2424
let models_path = cli_config.data_base_path.join(MODEL_FILE_NAME);
2525
let keys_path = cli_config.config_base_path.join(KEYS_CONFIG_FILE);
26+
let templates_path = cli_config.config_base_path.join(TEMPLATES_DIR_NAME);
2627

2728
// crate::output::heading("Config files:", output_level);
2829
crate::output::note(
29-
&format!("config file = {}", config_path.display()),
30+
&format!("config file: {}", config_path.display()),
3031
output_level,
3132
);
33+
crate::output::note(&format!("keys file: {}", keys_path.display()), output_level);
3234
crate::output::note(
33-
&format!("keys file = {}", keys_path.display()),
35+
&format!("models cache file: {}", models_path.display()),
3436
output_level,
3537
);
3638
crate::output::note(
37-
&format!("models cache file = {}", models_path.display()),
39+
&format!("templates dir: {}", templates_path.display()),
3840
output_level,
3941
);
4042

0 commit comments

Comments
 (0)