stubDescriber implements ToolSet and Describer.
| 13 | |
| 14 | // stubDescriber implements ToolSet and Describer. |
| 15 | type stubDescriber struct{ desc string } |
| 16 | |
| 17 | func (s *stubDescriber) Tools(context.Context) ([]tools.Tool, error) { return nil, nil } |
| 18 | func (s *stubDescriber) Describe() string { return s.desc } |
nothing calls this directly
no outgoing calls
no test coverage detected