()
| 117 | } |
| 118 | |
| 119 | func (td *ToolDefinition) Clean() *ToolDefinition { |
| 120 | if td == nil { |
| 121 | return nil |
| 122 | } |
| 123 | rtn := *td |
| 124 | rtn.DisplayName = "" |
| 125 | rtn.ShortDescription = "" |
| 126 | return &rtn |
| 127 | } |
| 128 | |
| 129 | func (td *ToolDefinition) Desc() string { |
| 130 | if td == nil { |
no outgoing calls
no test coverage detected