@difizen/magent-chat
Version:
10 lines • 527 B
JavaScript
import { FetcherModule } from '@difizen/magent-core';
import { ManaModule } from '@difizen/mana-app';
import { l10n } from '@difizen/mana-l10n';
import { ChatBaseModule } from "./chat-base/module.js";
import { ChatViewModule } from "./chat-view/module.js";
import { magentChatLangBundles } from "./lang/index.js";
export var ChatModule = ManaModule.create('magent-chat').preload(function () {
l10n.loadLangBundles(magentChatLangBundles);
return Promise.resolve();
}).dependOn(ChatBaseModule, ChatViewModule, FetcherModule);