mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-08 20:12:55 +00:00
12 lines
338 B
TypeScript
12 lines
338 B
TypeScript
import { definePluginEntry } from "./api.js";
|
|
import { registerWorkboardGatewayMethods } from "./runtime-api.js";
|
|
|
|
export default definePluginEntry({
|
|
id: "workboard",
|
|
name: "Workboard",
|
|
description: "Dashboard workboard for agent-owned issues and sessions.",
|
|
register(api) {
|
|
registerWorkboardGatewayMethods({ api });
|
|
},
|
|
});
|