mirror of
https://github.com/openclaw/openclaw.git
synced 2026-02-19 18:39:20 -05:00
Merged via /review-pr -> /prepare-pr -> /merge-pr.
Prepared head SHA: 4bee77ce06
Co-authored-by: mbelinky <132747814+mbelinky@users.noreply.github.com>
Co-authored-by: mbelinky <132747814+mbelinky@users.noreply.github.com>
Reviewed-by: @mbelinky
8 lines
263 B
TypeScript
8 lines
263 B
TypeScript
import type { Command } from "commander";
|
|
import { registerQrCli } from "./qr-cli.js";
|
|
|
|
export function registerClawbotCli(program: Command) {
|
|
const clawbot = program.command("clawbot").description("Legacy clawbot command aliases");
|
|
registerQrCli(clawbot);
|
|
}
|