2019-09-13 20:02:41 +00:00
|
|
|
// separate the client from app.js so we can call it later
|
|
|
|
const { Client } = require("eris");
|
2019-11-13 00:09:06 +00:00
|
|
|
const client = new Client(process.env.TOKEN, {
|
2019-09-13 20:02:41 +00:00
|
|
|
defaultImageSize: 1024
|
|
|
|
});
|
|
|
|
module.exports = client;
|