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