FridayNightFunkinBoyfriendBot/commands/validate.js
2024-02-20 16:58:22 +00:00

11 lines
196 B
JavaScript

module.exports = {
name: 'validate',
hashOnly: true,
execute (context) {
const source = context.source
source.sendFeedback({ text: 'Valid Hash', color: 'dark_green' })
}
}