mirror of
https://github.com/musix-org/musix-oss
synced 2024-11-10 08:10:18 +00:00
14 lines
337 B
JavaScript
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);
|
||
|
}
|
||
|
};
|