(home: &Path)
| 284 | } |
| 285 | |
| 286 | fn codex_plugin_current_cached_install_dir(home: &Path) -> PathBuf { |
| 287 | codex_plugin_cached_root(home).join(env!("CARGO_PKG_VERSION")) |
| 288 | } |
| 289 | |
| 290 | fn codex_plugin_cached_install_dirs(home: &Path) -> Vec<PathBuf> { |
| 291 | let mut dirs = Vec::new(); |
no test coverage detected