15 lines
368 B
TypeScript
15 lines
368 B
TypeScript
import type { ClawdbotPluginApi } from "../../src/plugins/types.js";
|
|
|
|
import { msteamsPlugin } from "./src/channel.js";
|
|
|
|
const plugin = {
|
|
id: "msteams",
|
|
name: "Microsoft Teams",
|
|
description: "Microsoft Teams channel plugin (Bot Framework)",
|
|
register(api: ClawdbotPluginApi) {
|
|
api.registerChannel({ plugin: msteamsPlugin });
|
|
},
|
|
};
|
|
|
|
export default plugin;
|