Loads the IP details cache from a file.
()
| 37 | |
| 38 | |
| 39 | def _load_cache() -> dict: |
| 40 | """Loads the IP details cache from a file.""" |
| 41 | return get_botasaurus_storage().get_item("ip_details_cache", {}) |
| 42 | |
| 43 | |
| 44 | def _save_cache(cache: dict): |
no test coverage detected