2021-04-09 16:10:21 +02:00

13 lines
213 B
JavaScript

'use strict';
module.exports = class Plugin {
constructor() {
this.commands = {
customCommand: {
usage: 'Description of custom command',
configDependent: false,
},
};
}
};