restartableToolset is a Statable + Restartable + Describer used to drive RestartToolset's matching+dispatch logic in isolation.
| 15 | // restartableToolset is a Statable + Restartable + Describer used to |
| 16 | // drive RestartToolset's matching+dispatch logic in isolation. |
| 17 | type restartableToolset struct { |
| 18 | desc string |
| 19 | state lifecycle.StateInfo |
| 20 | restartErr error |
| 21 | restartCall int |
| 22 | } |
| 23 | |
| 24 | func (r *restartableToolset) Tools(context.Context) ([]tools.Tool, error) { return nil, nil } |
| 25 | func (r *restartableToolset) Describe() string { return r.desc } |
nothing calls this directly
no outgoing calls
no test coverage detected