(ws: WebSocket, event: AgentEvent)
| 33 | } |
| 34 | |
| 35 | function sendWsEvent(ws: WebSocket, event: AgentEvent): void { |
| 36 | if (ws.readyState !== ws.OPEN) return; |
| 37 | ws.send(JSON.stringify(event)); |
| 38 | } |
| 39 | |
| 40 | export function getRuntimeConfigSignature(config: DataConfig): string { |
| 41 | return JSON.stringify({ |
no test coverage detected