| 25 | } |
| 26 | |
| 27 | type ToolSet struct { |
| 28 | mu sync.RWMutex |
| 29 | deferredTools map[string]deferredToolEntry |
| 30 | activatedTools map[string]tools.Tool |
| 31 | sources []deferredSource |
| 32 | } |
| 33 | |
| 34 | // Verify interface compliance |
| 35 | var ( |
nothing calls this directly
no outgoing calls
no test coverage detected