mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-25 09:39:30 +00:00
10 lines
293 B
TypeScript
10 lines
293 B
TypeScript
// Qa Matrix plugin entrypoint registers its OpenClaw integration.
|
|
import { definePluginEntry } from "openclaw/plugin-sdk/plugin-entry";
|
|
|
|
export default definePluginEntry({
|
|
id: "qa-matrix",
|
|
name: "QA Matrix",
|
|
description: "Matrix QA transport runner and substrate",
|
|
register() {},
|
|
});
|