openclaw
Version:
Multi-channel AI gateway with extensible messaging integrations
21 lines (20 loc) • 653 B
JavaScript
import "./channel-status-DxlXr0Xh.js";
//#region extensions/discord/src/channel-api.ts
const DISCORD_CHANNEL_META = {
id: "discord",
label: "Discord",
selectionLabel: "Discord (Bot API)",
detailLabel: "Discord Bot",
docsPath: "/channels/discord",
docsLabel: "discord",
blurb: "very well supported right now.",
systemImage: "bubble.left.and.bubble.right",
markdownCapable: true,
preferSessionLookupForAnnounceTarget: true
};
function getChatChannelMeta(id) {
if (id !== DISCORD_CHANNEL_META.id) throw new Error(`Unsupported Discord channel meta lookup: ${id}`);
return DISCORD_CHANNEL_META;
}
//#endregion
export { getChatChannelMeta as t };