mirror of
https://github.com/moltbot/moltbot.git
synced 2026-04-16 03:10:11 +00:00
21 lines
541 B
TypeScript
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",
|
|
},
|
|
});
|