15 lines
492 B
TypeScript
Raw Permalink Normal View History

import { defineChannelPluginEntry } from "openclaw/plugin-sdk/core";
2026-01-16 02:58:08 +00:00
import { msteamsPlugin } from "./src/channel.js";
import { setMSTeamsRuntime } from "./src/runtime.js";
2026-01-16 02:58:08 +00:00
export { msteamsPlugin } from "./src/channel.js";
export { setMSTeamsRuntime } from "./src/runtime.js";
export default defineChannelPluginEntry({
2026-01-16 02:58:08 +00:00
id: "msteams",
name: "Microsoft Teams",
description: "Microsoft Teams channel plugin (Bot Framework)",
plugin: msteamsPlugin,
setRuntime: setMSTeamsRuntime,
});