()
| 1751 | let mcpClientInitialized = false; |
| 1752 | |
| 1753 | const clearIdleTimer = () => { |
| 1754 | if (idleTimer) { |
| 1755 | clearTimeout(idleTimer); |
| 1756 | idleTimer = undefined; |
| 1757 | } |
| 1758 | }; |
| 1759 | |
| 1760 | const shutdown = (code: number) => { |
| 1761 | if (shuttingDown) { |
no outgoing calls
no test coverage detected