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 };