From ce7d3d8695b431bac2b1fcb67f79b6585c45a087 Mon Sep 17 00:00:00 2001 From: Vermium Sifell Date: Mon, 29 May 2023 16:14:32 +0200 Subject: [PATCH] fix: :truck: rename quote to quotes Renamed /quote to /quotes --- src/commands/{quote => quotes}/index.ts | 2 +- src/commands/{quote => quotes}/subcommands/post/index.ts | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename src/commands/{quote => quotes}/index.ts (96%) rename src/commands/{quote => quotes}/subcommands/post/index.ts (100%) diff --git a/src/commands/quote/index.ts b/src/commands/quotes/index.ts similarity index 96% rename from src/commands/quote/index.ts rename to src/commands/quotes/index.ts index 17dfa9a..3f3307d 100644 --- a/src/commands/quote/index.ts +++ b/src/commands/quotes/index.ts @@ -12,7 +12,7 @@ const subcommandHandlers: SubcommandHandlers = { }; export const builder = new SlashCommandBuilder() - .setName("quote") + .setName("quotes") .setDescription("Fun commands.") .addSubcommand(post.builder); diff --git a/src/commands/quote/subcommands/post/index.ts b/src/commands/quotes/subcommands/post/index.ts similarity index 100% rename from src/commands/quote/subcommands/post/index.ts rename to src/commands/quotes/subcommands/post/index.ts