mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-24 08:21:39 +00:00
15 lines
347 B
TypeScript
15 lines
347 B
TypeScript
import {
|
|
monitorIMessageProvider,
|
|
probeIMessage,
|
|
sendMessageIMessage,
|
|
} from "openclaw/plugin-sdk/imessage";
|
|
import type { PluginRuntimeChannel } from "./types-channel.js";
|
|
|
|
export function createRuntimeIMessage(): PluginRuntimeChannel["imessage"] {
|
|
return {
|
|
monitorIMessageProvider,
|
|
probeIMessage,
|
|
sendMessageIMessage,
|
|
};
|
|
}
|