describerOnly is a Describer that does NOT implement Statable.
| 46 | |
| 47 | // describerOnly is a Describer that does NOT implement Statable. |
| 48 | type describerOnly struct{ desc string } |
| 49 | |
| 50 | func (s *describerOnly) Tools(context.Context) ([]tools.Tool, error) { return nil, nil } |
| 51 | func (s *describerOnly) Describe() string { return s.desc } |
nothing calls this directly
no outgoing calls
no test coverage detected