Full path to the repo-local graph database marker path. Normal runtime graph storage resolves through `crate::storage::StoreLayout` into the user profile shard; this helper is only for explicit marker checks and migration cleanup.
(project_root: &Path)
| 342 | /// into the user profile shard; this helper is only for explicit marker checks |
| 343 | /// and migration cleanup. |
| 344 | pub fn get_project_db_path(project_root: &Path) -> PathBuf { |
| 345 | get_tracedecay_dir(project_root).join(DB_FILENAME) |
| 346 | } |
| 347 | |
| 348 | /// Returns true when the old repo-local `TraceDecay` graph DB exists at this root. |
| 349 | pub fn has_project_database(project_root: &Path) -> bool { |
no test coverage detected