From 7330b1238d765b706ca2eedd6a4b2661055e4088 Mon Sep 17 00:00:00 2001 From: Lukian LEIZOUR Date: Wed, 22 Feb 2023 19:51:03 +0100 Subject: [PATCH] commit --- .gitignore | 2 +- src/discord_commands/test.js | 7 +++++++ 2 files changed, 8 insertions(+), 1 deletion(-) create mode 100644 src/discord_commands/test.js 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