@difizen/magent-au
Version:
8 lines • 481 B
JavaScript
import { createSlotPreference, ManaModule } from '@difizen/mana-app';
import { AgentChatView, AgentChatSlot as ChatSlot } from "../agent-chat/chat-view.js";
import { AUViewCommonModule } from "../common/module.js";
import { SessionsViewModule } from "../sessions/module.js";
export var AgentChatModule = ManaModule.create('AgentChatModule').register(AgentChatView, createSlotPreference({
slot: ChatSlot,
view: AgentChatView
})).dependOn(SessionsViewModule, AUViewCommonModule);