mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-12 17:51:22 +00:00
7 lines
191 B
TypeScript
7 lines
191 B
TypeScript
import type { Command } from "commander";
|
|
import { registerQaLabCli } from "../../extensions/qa-lab/api.js";
|
|
|
|
export function registerQaCli(program: Command) {
|
|
registerQaLabCli(program);
|
|
}
|