15 lines
451 B
TypeScript
Raw Permalink Normal View History

import { defineChannelPluginEntry } from "openclaw/plugin-sdk/core";
import { matrixPlugin } from "./src/channel.js";
import { setMatrixRuntime } from "./src/runtime.js";
2026-01-15 08:29:17 +00:00
export { matrixPlugin } from "./src/channel.js";
export { setMatrixRuntime } from "./src/runtime.js";
export default defineChannelPluginEntry({
2026-01-15 08:29:17 +00:00
id: "matrix",
name: "Matrix",
description: "Matrix channel plugin",
plugin: matrixPlugin,
setRuntime: setMatrixRuntime,
});