| """ | |
| utils.http — backward-compatibility shim. | |
| The shared session has moved to cores.search.http. This module | |
| re-exports it so existing imports continue to work. | |
| """ | |
| from __future__ import annotations | |
| from cores.search import shared_session, fetch_bytes, fetch_html, fetch_json | |
| __all__ = ["shared_session", "fetch_bytes", "fetch_html", "fetch_json"] | |