Return the parsed DB path mappings from ``COCOINDEX_CODE_DB_PATH_MAPPING``.
()
| 241 | |
| 242 | |
| 243 | def get_db_path_mappings() -> list[PathMapping]: |
| 244 | """Return the parsed DB path mappings from ``COCOINDEX_CODE_DB_PATH_MAPPING``.""" |
| 245 | global _db_path_mapping # noqa: PLW0603 |
| 246 | if _db_path_mapping is None: |
| 247 | _db_path_mapping = _parse_path_mapping(_ENV_DB_PATH_MAPPING) |
| 248 | return list(_db_path_mapping) |
| 249 | |
| 250 | |
| 251 | def get_host_path_mappings() -> list[PathMapping]: |
no test coverage detected