mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-06 05:51:15 +08:00
18 lines
468 B
TypeScript
18 lines
468 B
TypeScript
// Signal plugin module implements channel entry behavior.
|
|
import { defineBundledChannelEntry } from "openclaw/plugin-sdk/channel-entry-contract";
|
|
|
|
export default defineBundledChannelEntry({
|
|
id: "signal",
|
|
name: "Signal",
|
|
description: "Signal channel plugin",
|
|
importMetaUrl: import.meta.url,
|
|
plugin: {
|
|
specifier: "./api.js",
|
|
exportName: "signalPlugin",
|
|
},
|
|
runtime: {
|
|
specifier: "./runtime-api.js",
|
|
exportName: "setSignalRuntime",
|
|
},
|
|
});
|