(tools []workspacesdk.MCPToolInfo)
| 252 | } |
| 253 | |
| 254 | func normalizeTools(tools []workspacesdk.MCPToolInfo) []workspacesdk.MCPToolInfo { |
| 255 | if tools == nil { |
| 256 | return []workspacesdk.MCPToolInfo{} |
| 257 | } |
| 258 | return tools |
| 259 | } |
| 260 | |
| 261 | // startReloadIfNeeded registers the reload with the singleflight group |
| 262 | // using a fixed key so concurrent triggers share one body. The body |
no outgoing calls
no test coverage detected