galactic-bot/structure/client/components/commands/administration/Import.js

26 lines
505 B
JavaScript
Raw Normal View History

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