2026-03-16 23:51:41 -07:00
|
|
|
import { defineChannelPluginEntry } from "openclaw/plugin-sdk/core";
|
2026-01-16 02:58:08 +00:00
|
|
|
import { msteamsPlugin } from "./src/channel.js";
|
2026-01-18 11:00:19 +00:00
|
|
|
import { setMSTeamsRuntime } from "./src/runtime.js";
|
2026-01-16 02:58:08 +00:00
|
|
|
|
2026-03-17 09:33:17 -07:00
|
|
|
export { msteamsPlugin } from "./src/channel.js";
|
|
|
|
|
export { setMSTeamsRuntime } from "./src/runtime.js";
|
|
|
|
|
|
2026-03-16 23:51:41 -07:00
|
|
|
export default defineChannelPluginEntry({
|
2026-01-16 02:58:08 +00:00
|
|
|
id: "msteams",
|
|
|
|
|
name: "Microsoft Teams",
|
|
|
|
|
description: "Microsoft Teams channel plugin (Bot Framework)",
|
2026-03-16 23:51:41 -07:00
|
|
|
plugin: msteamsPlugin,
|
|
|
|
|
setRuntime: setMSTeamsRuntime,
|
|
|
|
|
});
|