feat(cli): add console account subcommands (#17265)

This commit is contained in:
Kit Langton
2026-03-12 20:56:40 -04:00
committed by GitHub
parent 0a281c7390
commit d9dd33aeeb
2 changed files with 27 additions and 5 deletions

View File

@@ -192,3 +192,28 @@ export const OrgsCommand = cmd({
await runtime.runPromise(orgsEffect())
},
})
export const ConsoleCommand = cmd({
command: "console",
describe: "manage console account",
builder: (yargs) =>
yargs
.command({
...LoginCommand,
describe: "log in to console",
})
.command({
...LogoutCommand,
describe: "log out from console",
})
.command({
...SwitchCommand,
describe: "switch active org",
})
.command({
...OrgsCommand,
describe: "list orgs",
})
.demandCommand(),
async handler() {},
})