Return the parsed host path mappings from ``COCOINDEX_CODE_HOST_PATH_MAPPING``.
()
| 249 | |
| 250 | |
| 251 | def get_host_path_mappings() -> list[PathMapping]: |
| 252 | """Return the parsed host path mappings from ``COCOINDEX_CODE_HOST_PATH_MAPPING``.""" |
| 253 | global _host_path_mapping # noqa: PLW0603 |
| 254 | if _host_path_mapping is None: |
| 255 | _host_path_mapping = _parse_path_mapping(_ENV_HOST_PATH_MAPPING) |
| 256 | return list(_host_path_mapping) |
| 257 | |
| 258 | |
| 259 | def format_path_for_display(p: str | Path) -> str: |