mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-20 14:30:57 +00:00
15 lines
451 B
TypeScript
15 lines
451 B
TypeScript
import { defineChannelPluginEntry } from "openclaw/plugin-sdk/core";
|
|
import { matrixPlugin } from "./src/channel.js";
|
|
import { setMatrixRuntime } from "./src/runtime.js";
|
|
|
|
export { matrixPlugin } from "./src/channel.js";
|
|
export { setMatrixRuntime } from "./src/runtime.js";
|
|
|
|
export default defineChannelPluginEntry({
|
|
id: "matrix",
|
|
name: "Matrix",
|
|
description: "Matrix channel plugin",
|
|
plugin: matrixPlugin,
|
|
setRuntime: setMatrixRuntime,
|
|
});
|