forked from Galactic/galactic-bot
26 lines
505 B
JavaScript
26 lines
505 B
JavaScript
|
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;
|