openclaw/extensions/synology-chat/index.ts
2026-06-04 21:02:07 -04:00

17 lines
536 B
TypeScript

// Synology Chat plugin entrypoint registers its OpenClaw integration.
import { defineBundledChannelEntry } from "openclaw/plugin-sdk/channel-entry-contract";
export default defineBundledChannelEntry({
id: "synology-chat",
name: "Synology Chat",
description: "Native Synology Chat channel plugin for OpenClaw",
importMetaUrl: import.meta.url,
plugin: {
specifier: "./channel-plugin-api.js",
exportName: "synologyChatPlugin",
},
runtime: {
specifier: "./api.js",
exportName: "setSynologyRuntime",
},
});