Files
openclaw/extensions/msteams/index.ts
2026-04-06 16:40:41 +01:00

21 lines
541 B
TypeScript

import { defineBundledChannelEntry } from "openclaw/plugin-sdk/channel-entry-contract";
export default defineBundledChannelEntry({
id: "msteams",
name: "Microsoft Teams",
description: "Microsoft Teams channel plugin (Bot Framework)",
importMetaUrl: import.meta.url,
plugin: {
specifier: "./api.js",
exportName: "msteamsPlugin",
},
secrets: {
specifier: "./src/secret-contract.js",
exportName: "channelSecrets",
},
runtime: {
specifier: "./runtime-api.js",
exportName: "setMSTeamsRuntime",
},
});