2026-03-16 23:51:41 -07:00
|
|
|
import { defineChannelPluginEntry } from "openclaw/plugin-sdk/core";
|
2026-03-02 19:32:47 +00:00
|
|
|
import { matrixPlugin } from "./src/channel.js";
|
2026-01-18 02:51:42 +00:00
|
|
|
import { setMatrixRuntime } from "./src/runtime.js";
|
2026-01-15 08:29:17 +00:00
|
|
|
|
2026-03-17 09:33:17 -07:00
|
|
|
export { matrixPlugin } from "./src/channel.js";
|
|
|
|
|
export { setMatrixRuntime } from "./src/runtime.js";
|
|
|
|
|
|
2026-03-16 23:51:41 -07:00
|
|
|
export default defineChannelPluginEntry({
|
2026-01-15 08:29:17 +00:00
|
|
|
id: "matrix",
|
|
|
|
|
name: "Matrix",
|
2026-03-16 23:51:41 -07:00
|
|
|
description: "Matrix channel plugin",
|
|
|
|
|
plugin: matrixPlugin,
|
|
|
|
|
setRuntime: setMatrixRuntime,
|
|
|
|
|
});
|