mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-06 14:51:08 +00:00
10 lines
298 B
TypeScript
10 lines
298 B
TypeScript
import { definePluginEntry } from "openclaw/plugin-sdk/core";
|
|
import { registerMatrixCliMetadata } from "./src/cli-metadata.js";
|
|
|
|
export default definePluginEntry({
|
|
id: "matrix",
|
|
name: "Matrix",
|
|
description: "Matrix channel plugin (matrix-js-sdk)",
|
|
register: registerMatrixCliMetadata,
|
|
});
|