fix: restore daemon subcommand alias
parent
f98d31cdd3
commit
5567bceb66
|
|
@ -44,6 +44,14 @@ const entries: SubCliEntry[] = [
|
||||||
mod.registerGatewayCli(program);
|
mod.registerGatewayCli(program);
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
name: "daemon",
|
||||||
|
description: "Gateway service (legacy alias)",
|
||||||
|
register: async (program) => {
|
||||||
|
const mod = await import("../daemon-cli.js");
|
||||||
|
mod.registerDaemonCli(program);
|
||||||
|
},
|
||||||
|
},
|
||||||
{
|
{
|
||||||
name: "logs",
|
name: "logs",
|
||||||
description: "Gateway logs",
|
description: "Gateway logs",
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue