```ts import { Args, Command } from '@sapphire/framework'; import { Message } from 'discord.js'; ex

import { Args, Command } from '@sapphire/framework';
import { Message } from 'discord.js';

export default class extends Command {
    public async run(message: Message, _args: Args) {
        return message.channel.send('hi');
    }
}
Was this page helpful?