10 lines
192 B
JavaScript
10 lines
192 B
JavaScript
module.exports = {
|
|
name: 'DistubeError',
|
|
once: true,
|
|
async execute(channel, error) {
|
|
console.log({
|
|
channel: channel,
|
|
error: error
|
|
})
|
|
}
|
|
} |