diff --git a/.gitignore b/.gitignore index b6d5c1b..9118a27 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,2 @@ - tests.js +tests \ No newline at end of file diff --git a/src/discord_commands/test.js b/src/discord_commands/test.js new file mode 100644 index 0000000..76d725c --- /dev/null +++ b/src/discord_commands/test.js @@ -0,0 +1,7 @@ +const { SlashCommandBuilder } = require("discord.js"); + +const test = new SlashCommandBuilder() + .setName("test") + .setDescription("Test command"); + +module.exports = { test }; \ No newline at end of file