19 lines
532 B
TypeScript
19 lines
532 B
TypeScript
import type { ClawdbotPluginApi } from "clawdbot/plugin-sdk";
|
|
import { emptyPluginConfigSchema } from "clawdbot/plugin-sdk";
|
|
|
|
import { imessagePlugin } from "./src/channel.js";
|
|
import { setIMessageRuntime } from "./src/runtime.js";
|
|
|
|
const plugin = {
|
|
id: "imessage",
|
|
name: "iMessage",
|
|
description: "iMessage channel plugin",
|
|
configSchema: emptyPluginConfigSchema(),
|
|
register(api: ClawdbotPluginApi) {
|
|
setIMessageRuntime(api.runtime);
|
|
api.registerChannel({ plugin: imessagePlugin });
|
|
},
|
|
};
|
|
|
|
export default plugin;
|