mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-23 07:01:40 +00:00
17 lines
446 B
TypeScript
17 lines
446 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",
|
|
},
|
|
runtime: {
|
|
specifier: "./runtime-api.js",
|
|
exportName: "setMSTeamsRuntime",
|
|
},
|
|
});
|