aboutsummaryrefslogtreecommitdiff
path: root/src/commands/next.ts
blob: a9796c08d568cc2f785de26abe6bf19a8eb92fc4 (plain)
1
2
3
4
5
6
7
8
9
10
import {injectable} from 'inversify';
import Skip from './skip.js';
import {SlashCommandBuilder} from '@discordjs/builders';

@injectable()
export default class extends Skip {
  public readonly slashCommand = new SlashCommandBuilder()
    .setName('next')
    .setDescription('skip to the next song');
}