()
| 328 | # ---------------------------------------------------------------------------- main |
| 329 | |
| 330 | def load_repos() -> list[dict]: |
| 331 | with open(REPOS_CONF, "rb") as f: |
| 332 | return tomllib.load(f).get("repos", []) |
| 333 | |
| 334 | |
| 335 | def load_probe_set(languages: list[str], discovered: dict) -> dict: |