(deps)
| 1123 | } |
| 1124 | |
| 1125 | function getHubUrl(deps) { |
| 1126 | if (deps.hubUrl) return deps.hubUrl; |
| 1127 | const a2a = deps.a2a || require('./a2aProtocol'); |
| 1128 | return typeof a2a.getHubUrl === 'function' ? a2a.getHubUrl() : process.env.A2A_HUB_URL; |
| 1129 | } |
| 1130 | |
| 1131 | function getHubNodeSecret(deps) { |
| 1132 | if (deps.nodeSecret !== undefined) return deps.nodeSecret; |
no outgoing calls
no test coverage detected