Copy changes

This commit is contained in:
Jay V
2025-06-19 16:28:03 -04:00
parent 15a8936806
commit f5e7f079ea
4 changed files with 26 additions and 26 deletions

View File

@@ -9,14 +9,14 @@ import { map, pipe, sortBy, values } from "remeda"
export const AuthCommand = cmd({
command: "auth",
describe: "manage credentials",
describe: "Manage credentials",
builder: (yargs) =>
yargs
.command(AuthLoginCommand)
.command(AuthLogoutCommand)
.command(AuthListCommand)
.demandCommand(),
async handler() {},
async handler() { },
})
export const AuthListCommand = cmd({