Files
openclaw/extensions/msteams/index.ts
2026-03-16 23:52:23 -07:00

12 lines
387 B
TypeScript

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