12 lines
228 B
JavaScript
12 lines
228 B
JavaScript
module.exports = {
|
|
name: 'validate',
|
|
description:['validate in the bot'],
|
|
|
|
hashOnly: true,
|
|
execute (context) {
|
|
const source = context.source
|
|
|
|
|
|
source.sendFeedback({ text: 'Valid Hash', color: 'green' })
|
|
}
|
|
}
|