Files
selmerBot/commands/misc/hello_world.js
T

7 lines
171 B
JavaScript
Raw Normal View History

2022-02-17 21:42:57 -05:00
module.exports = {
name: "test",
2022-02-17 21:42:57 -05:00
description: "HI SELMER",
execute(message, args, Discord, Client, bot) {
2022-02-17 21:42:57 -05:00
message.channel.send("HI SELMER!!!");
}
}