mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-13 18:21:27 +00:00
7 lines
177 B
TypeScript
7 lines
177 B
TypeScript
import type { Command } from "commander";
|
|
import { registerQaLabCli } from "../qa-e2e/cli.js";
|
|
|
|
export function registerQaCli(program: Command) {
|
|
registerQaLabCli(program);
|
|
}
|