| 6 | ) |
| 7 | |
| 8 | type DeferredToolIndex struct { |
| 9 | tools map[string]Tool |
| 10 | order []string |
| 11 | } |
| 12 | |
| 13 | func NewDeferredToolIndex() *DeferredToolIndex { |
| 14 | return &DeferredToolIndex{tools: map[string]Tool{}} |
nothing calls this directly
no outgoing calls
no test coverage detected