Describer can be implemented by a ToolSet to provide a short, user-visible description that uniquely identifies the toolset instance (e.g. for use in error messages and warnings). The string must never contain secrets.
| 15 | // description that uniquely identifies the toolset instance (e.g. for use in |
| 16 | // error messages and warnings). The string must never contain secrets. |
| 17 | type Describer interface { |
| 18 | Describe() string |
| 19 | } |
| 20 | |
| 21 | // DescribeToolSet returns a short description for ts suitable for user-visible |
| 22 | // messages. It walks the wrapper chain (e.g. through WithName / |
no outgoing calls
no test coverage detected