Add LBRY into bot

This commit is contained in:
Snazzah 2020-08-11 22:11:40 -05:00
parent 14c7c99450
commit 43e03ddd4f
No known key found for this signature in database
GPG key ID: 5E71D54F3D86282E

View file

@ -6,6 +6,7 @@ const MessageAwaiter = require('./messageawaiter');
const path = require('path');
const CatLoggr = require('cat-loggr');
const config = require('config');
const LBRY = require('./structures/LBRY');
class CurateBot extends Eris.Client {
constructor({ packagePath, mainDir } = {}) {
@ -96,6 +97,7 @@ class CurateBot extends Eris.Client {
// Events
this.messageAwaiter = new MessageAwaiter(this);
this.eventHandler = new EventHandler(this);
this.lbry = new LBRY(this);
}
/**