galactic-bot/structure/client/components/commands/administration/Import.js
2020-08-04 12:35:28 +03:00

27 lines
551 B
JavaScript

const { Command } = require('../../../../interfaces/');
class ImportCommand extends Command {
constructor(client) {
super(client, {
name: 'import',
module: 'administration',
tags: ['log', 'logs', 'logging'],
memberPermissions: ['ADMINISTRATOR'],
archivable: false,
restricted: true
});
this.client = client;
}
async execute(message) {
//for importing modlogs and settings from v1 AND v2
}
}
module.exports = ImportCommand;