15 lines
516 B
TypeScript
Raw Permalink Normal View History

import { defineChannelPluginEntry } from "openclaw/plugin-sdk/core";
2026-03-15 20:39:37 -07:00
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,
});