UNPKG

buroventures-harald-code

Version:

Harald Code - AI-powered coding assistant CLI

16 lines 386 B
/** * @license * Copyright 2025 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import { CommandKind } from './types.js'; export const authCommand = { name: 'auth', description: 'change the auth method', kind: CommandKind.BUILT_IN, action: (_context, _args) => ({ type: 'dialog', dialog: 'auth', }), }; //# sourceMappingURL=authCommand.js.map