1
0
mirror of https://github.com/musix-org/musix-oss synced 2024-09-20 14:01:55 +00:00
musix-oss/commands/savedb.js

14 lines
337 B
JavaScript
Raw Normal View History

2020-03-19 14:45:05 +00:00
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);
}
};