mirror of
https://github.com/openclaw/openclaw.git
synced 2026-02-09 05:19:32 +08:00
18 lines
556 B
TypeScript
18 lines
556 B
TypeScript
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;
|