1
0
mirror of https://github.com/musix-org/musix-oss synced 2024-09-20 10:51:56 +00:00
musix-oss/commands/savedb.js
2020-03-19 16:45:05 +02:00

14 lines
337 B
JavaScript

module.exports = {
name: 'savedb',
alias: 'save',
usage: '',
description: 'save the database',
onlyDev: true,
permission: 'dev',
category: 'util',
async execute(msg, args, client, Discord, prefix, command) {
client.funcs.saveDB(client);
msg.channel.send(client.messages.dbSaved);
}
};