15 lines
492 B
TypeScript
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,
|
|
});
|