diff --git a/discord/commands/Partner.ts b/discord/commands/Partner.ts new file mode 100644 index 0000000..368f013 --- /dev/null +++ b/discord/commands/Partner.ts @@ -0,0 +1,13 @@ +import DiscordInteractionCommand from "../../util/DiscordInteractionCommand"; +import { ChatInputCommandInteraction } from "discord.js"; + +export default class Ping extends DiscordInteractionCommand { + constructor() { + super("partner", "Manipulates partner information."); + } + + public async execute(interaction: ChatInputCommandInteraction): Promise { + if (interaction.options?.getSubcommand(true) === "add") { + } + } +} diff --git a/discord/commands/index.ts b/discord/commands/index.ts index eefa235..be3f554 100644 --- a/discord/commands/index.ts +++ b/discord/commands/index.ts @@ -1,2 +1,3 @@ +export { default as Partner } from "./Partner"; export { default as Ping } from "./Ping"; export { default as Whois } from "./Whois";