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<void> {
        if (interaction.options?.getSubcommand(true) === "add") {
        }
    }
}