This commit is contained in:
Dax Raad
2025-06-11 18:45:18 -04:00
parent 468cec545a
commit 9b2b610920
3 changed files with 2 additions and 5 deletions

View File

@@ -8,12 +8,12 @@ import { ModelsDev } from "../../provider/models"
export const AuthCommand = cmd({
command: "auth",
describe: "manage credentials",
builder: (yargs) =>
yargs
.command(AuthLoginCommand)
.command(AuthLogoutCommand)
.command(AuthListCommand)
.demandCommand(),
.command(AuthListCommand),
async handler(args) {},
})