2020-06-02 12:09:28 +02:00
|
|
|
const { Command } = require('../../../../interfaces/');
|
|
|
|
|
|
|
|
class ImportCommand extends Command {
|
|
|
|
|
|
|
|
constructor(client) {
|
|
|
|
|
|
|
|
super(client, {
|
|
|
|
name: 'import',
|
|
|
|
module: 'administration',
|
2020-08-09 21:53:09 +02:00
|
|
|
tags: ['log', 'logs', 'logging'],
|
2020-06-02 12:09:28 +02:00
|
|
|
memberPermissions: ['ADMINISTRATOR'],
|
|
|
|
archivable: false,
|
|
|
|
restricted: true
|
|
|
|
});
|
|
|
|
|
|
|
|
this.client = client;
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
async execute(message) {
|
|
|
|
//for importing modlogs and settings from v1 AND v2
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = ImportCommand;
|