({ attachments }, _context)
| 161 | return input.message |
| 162 | }, |
| 163 | async validateInput({ attachments }, _context): Promise<ValidationResult> { |
| 164 | if (!attachments || attachments.length === 0) { |
| 165 | return { result: true } |
| 166 | } |
| 167 | return validateAttachmentPaths(attachments) |
| 168 | }, |
| 169 | async description() { |
| 170 | return DESCRIPTION |
| 171 | }, |
nothing calls this directly
no test coverage detected