Files
openclaw/extensions/synology-chat/index.ts
2026-04-05 14:20:31 +01:00

15 lines
524 B
TypeScript

import { defineChannelPluginEntry } from "openclaw/plugin-sdk/channel-core";
import { synologyChatPlugin } from "./src/channel.js";
import { setSynologyRuntime } from "./src/runtime.js";
export { synologyChatPlugin } from "./src/channel.js";
export { setSynologyRuntime } from "./src/runtime.js";
export default defineChannelPluginEntry({
id: "synology-chat",
name: "Synology Chat",
description: "Native Synology Chat channel plugin for OpenClaw",
plugin: synologyChatPlugin,
setRuntime: setSynologyRuntime,
});