From c2acac4810345a73fe80fda32b389a10f1ed30a4 Mon Sep 17 00:00:00 2001 From: Flummi Date: Fri, 7 Sep 2018 19:24:04 +0200 Subject: [PATCH] ... --- src/wrapper.mjs => index.mjs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) rename src/wrapper.mjs => index.mjs (79%) diff --git a/src/wrapper.mjs b/index.mjs similarity index 79% rename from src/wrapper.mjs rename to index.mjs index 976f053..2c06277 100644 --- a/src/wrapper.mjs +++ b/index.mjs @@ -1,11 +1,11 @@ -import { irc as irclib } from "./clients/irc"; -import { tg as tglib } from "./clients/tg"; +import { irc as irclib } from "./src/clients/irc"; +import { tg as tglib } from "./src/clients/tg"; import EventEmitter from "events"; const clients = []; -const wrapper = class wrapper extends EventEmitter { +const cuffeo = class wrapper extends EventEmitter { constructor(cfg) { super(); for (let srv in cfg) { @@ -37,4 +37,4 @@ const wrapper = class wrapper extends EventEmitter { } }; -export { wrapper, clients }; +export { cuffeo, clients };