crv2/discord/commands/Partner.ts

14 lines
436 B
TypeScript
Raw Normal View History

import DiscordInteractionCommand from "../../util/DiscordInteractionCommand";
import { ChatInputCommandInteraction } from "discord.js";
export default class Ping extends DiscordInteractionCommand {
2024-10-25 16:57:33 -04:00
constructor() {
super("partner", "Manipulates partner information.");
}
2024-10-25 16:57:33 -04:00
public async execute(interaction: ChatInputCommandInteraction): Promise<void> {
if (interaction.options?.getSubcommand(true) === "add") {
}
2024-10-25 16:57:33 -04:00
}
}