Files
openclaw/extensions/synology-chat/index.ts
2026-03-16 23:52:23 -07:00

12 lines
405 B
TypeScript

import { defineChannelPluginEntry } from "openclaw/plugin-sdk/core";
import { synologyChatPlugin } from "./src/channel.js";
import { 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,
});