Return the ``.autoforge`` directory path. Does NOT create it.
(project_dir: Path)
| 92 | # --------------------------------------------------------------------------- |
| 93 | |
| 94 | def get_autoforge_dir(project_dir: Path) -> Path: |
| 95 | """Return the ``.autoforge`` directory path. Does NOT create it.""" |
| 96 | return project_dir / ".autoforge" |
| 97 | |
| 98 | |
| 99 | def ensure_autoforge_dir(project_dir: Path) -> Path: |
no outgoing calls
no test coverage detected