Resolve the path to the ``prompts/`` directory.
(project_dir: Path)
| 151 | |
| 152 | |
| 153 | def get_prompts_dir(project_dir: Path) -> Path: |
| 154 | """Resolve the path to the ``prompts/`` directory.""" |
| 155 | return _resolve_dir(project_dir, "prompts") |
| 156 | |
| 157 | |
| 158 | # --------------------------------------------------------------------------- |
no test coverage detected