13 lines
329 B
JavaScript
13 lines
329 B
JavaScript
class CommandSource {
|
|
constructor ({ bot, permissionLevel = 0, sendFeedback = () => {} } = {}) {
|
|
this.bot = bot
|
|
this.permissionLevel = permissionLevel
|
|
this.sendFeedback = sendFeedback
|
|
}
|
|
|
|
sendError (error) {
|
|
this.sendFeedback([{ text: '', color: 'red' }, error], false)
|
|
}
|
|
}
|
|
|
|
module.exports = CommandSource
|