mrmBot-Matrix/utils/client.js

7 lines
196 B
JavaScript
Raw Normal View History

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