()
| 330 | } |
| 331 | |
| 332 | fn terminal_scripts_dir() -> std::path::PathBuf { |
| 333 | CliConfig::config_dir() |
| 334 | .ok() |
| 335 | .unwrap_or_else(|| std::env::temp_dir().join("bitfun-cli")) |
| 336 | .join("temp") |
| 337 | .join("scripts") |
| 338 | } |
| 339 | |
| 340 | async fn initialize_terminal_service() { |
| 341 | use bitfun_core::service::runtime::RuntimeManager; |
no test coverage detected