Return the path to the CocoIndex state database for a project.
(project_root: Path)
| 296 | |
| 297 | |
| 298 | def cocoindex_db_path(project_root: Path) -> Path: |
| 299 | """Return the path to the CocoIndex state database for a project.""" |
| 300 | return resolve_db_dir(project_root) / _COCOINDEX_DB_NAME |
| 301 | |
| 302 | |
| 303 | def user_settings_dir() -> Path: |
no test coverage detected