openclaw/src/plugins/runtime/runtime-imessage.ts
2026-03-17 09:38:21 -07:00

15 lines
362 B
TypeScript

import {
monitorIMessageProvider,
probeIMessage,
sendMessageIMessage,
} from "../../../extensions/imessage/runtime-api.js";
import type { PluginRuntimeChannel } from "./types-channel.js";
export function createRuntimeIMessage(): PluginRuntimeChannel["imessage"] {
return {
monitorIMessageProvider,
probeIMessage,
sendMessageIMessage,
};
}