1
0
mirror of https://github.com/musix-org/musix-oss synced 2025-04-10 22:43:30 +00:00
2020-05-15 19:05:39 +03:00

13 lines
330 B
JavaScript

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