mirror of
https://github.com/LBRYFoundation/curate.git
synced 2025-08-23 17:37:25 +00:00
Add LBRY into bot
This commit is contained in:
parent
14c7c99450
commit
43e03ddd4f
1 changed files with 2 additions and 0 deletions
|
@ -6,6 +6,7 @@ const MessageAwaiter = require('./messageawaiter');
|
||||||
const path = require('path');
|
const path = require('path');
|
||||||
const CatLoggr = require('cat-loggr');
|
const CatLoggr = require('cat-loggr');
|
||||||
const config = require('config');
|
const config = require('config');
|
||||||
|
const LBRY = require('./structures/LBRY');
|
||||||
|
|
||||||
class CurateBot extends Eris.Client {
|
class CurateBot extends Eris.Client {
|
||||||
constructor({ packagePath, mainDir } = {}) {
|
constructor({ packagePath, mainDir } = {}) {
|
||||||
|
@ -96,6 +97,7 @@ class CurateBot extends Eris.Client {
|
||||||
// Events
|
// Events
|
||||||
this.messageAwaiter = new MessageAwaiter(this);
|
this.messageAwaiter = new MessageAwaiter(this);
|
||||||
this.eventHandler = new EventHandler(this);
|
this.eventHandler = new EventHandler(this);
|
||||||
|
this.lbry = new LBRY(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Add table
Reference in a new issue