From 7b5df4ca0a5bd6fcf033ef40563599593b156910 Mon Sep 17 00:00:00 2001 From: Minteck Date: Wed, 13 Jul 2022 23:34:21 +0200 Subject: Initial commit --- core/CommandBase.ts | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 core/CommandBase.ts (limited to 'core/CommandBase.ts') diff --git a/core/CommandBase.ts b/core/CommandBase.ts new file mode 100644 index 0000000..8be766b --- /dev/null +++ b/core/CommandBase.ts @@ -0,0 +1,8 @@ +import {SlashCommandBuilder} from "@discordjs/builders"; + +export class CommandBase { + public slashCommandData: Omit; + + constructor() { + } +} \ No newline at end of file -- cgit