Return the path to the SQLite database for a project.
(project_dir: Path)
| 182 | |
| 183 | |
| 184 | def get_database_path(project_dir: Path) -> Path: |
| 185 | """Return the path to the SQLite database for a project.""" |
| 186 | from autoforge_paths import get_features_db_path |
| 187 | return get_features_db_path(project_dir) |
| 188 | |
| 189 | |
| 190 | def get_database_url(project_dir: Path) -> str: |
no test coverage detected