2026-03-17 09:38:21 -07:00

15 lines
492 B
TypeScript

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