mrmBot-Matrix/utils/client.js
2019-09-13 15:02:41 -05:00

8 lines
233 B
JavaScript

// separate the client from app.js so we can call it later
const { Client } = require("eris");
const config = require("../config.json");
const client = new Client(config.token, {
defaultImageSize: 1024
});
module.exports = client;