()
| 418 | # --------------------------------------------------------------------------- |
| 419 | |
| 420 | def load_index() -> dict: |
| 421 | with open(INDEX_PATH, "r", encoding="utf-8") as f: |
| 422 | return json.load(f) |
| 423 | |
| 424 | |
| 425 | def save_index(data: dict): |
no outgoing calls
no test coverage detected