mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-19 07:37:27 +00:00
8 lines
255 B
TypeScript
8 lines
255 B
TypeScript
import type { ClawdbotPluginApi } from "../../src/plugins/types.js";
|
|
|
|
import { createLobsterTool } from "./src/lobster-tool.js";
|
|
|
|
export default function register(api: ClawdbotPluginApi) {
|
|
api.registerTool(createLobsterTool(api), { optional: true });
|
|
}
|