1
0
mirror of https://github.com/musix-org/musix-oss synced 2025-07-03 00:34:28 +00:00
Files
musix-oss/src/commands/savedb.js
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);
}
};