Spaces:
Paused
Paused
| import type { OpenClawPluginApi } from "openclaw/plugin-sdk"; | |
| import { emptyPluginConfigSchema } from "openclaw/plugin-sdk"; | |
| import { msteamsPlugin } from "./src/channel.js"; | |
| import { setMSTeamsRuntime } from "./src/runtime.js"; | |
| const plugin = { | |
| id: "msteams", | |
| name: "Microsoft Teams", | |
| description: "Microsoft Teams channel plugin (Bot Framework)", | |
| configSchema: emptyPluginConfigSchema(), | |
| register(api: OpenClawPluginApi) { | |
| setMSTeamsRuntime(api.runtime); | |
| api.registerChannel({ plugin: msteamsPlugin }); | |
| }, | |
| }; | |
| export default plugin; | |