(props)
| 203 | ToolRegistry.register({ |
| 204 | name: "read", |
| 205 | render(props) { |
| 206 | return ( |
| 207 | <BasicTool |
| 208 | icon="glasses" |
| 209 | trigger={{ |
| 210 | title: "Read", |
| 211 | subtitle: props.input.filePath ? getFilename(props.input.filePath) : "", |
| 212 | }} |
| 213 | /> |
| 214 | ) |
| 215 | }, |
| 216 | }) |
| 217 | |
| 218 | ToolRegistry.register({ |
nothing calls this directly
no test coverage detected