mrmBot-Matrix/utils/client.js

8 lines
233 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 config = require("../config.json");
const client = new Client(config.token, {
defaultImageSize: 1024
});
module.exports = client;