fixed command name

This commit is contained in:
loicbersier 2019-10-12 15:18:24 +02:00
parent 5d48e554e0
commit 4cb05965d5

View file

@ -5,9 +5,9 @@ const util = require('util');
const exec = util.promisify(require('child_process').exec);
const superagent = require('superagent');
class vid2giftCommand extends Command {
class vid2gifCommand extends Command {
constructor() {
super('vid2gift', {
super('vid2gif', {
aliases: ['vid2gif', 'v2g', 'vg'],
category: 'utility',
args: [
@ -86,4 +86,4 @@ class vid2giftCommand extends Command {
}
}
module.exports = vid2giftCommand;
module.exports = vid2gifCommand;