(
path: Option<String>,
project_id: Option<String>,
project_path: Option<String>,
)
| 373 | } |
| 374 | |
| 375 | pub(crate) async fn resolve_cli_project_root( |
| 376 | path: Option<String>, |
| 377 | project_id: Option<String>, |
| 378 | project_path: Option<String>, |
| 379 | ) -> tracedecay::errors::Result<PathBuf> { |
| 380 | if let Some(root) = resolve_registered_project_root(project_id, project_path).await? { |
| 381 | return Ok(root); |
| 382 | } |
| 383 | Ok(tracedecay::config::resolve_path_with_discovery(path)) |
| 384 | } |
| 385 | |
| 386 | pub(crate) fn parse_lcm_scope_arg( |
| 387 | value: &str, |
no test coverage detected