summaryrefslogtreecommitdiff
path: root/packages/cli/src/ui/commands/authCommand.ts
blob: 29bd2c9d68e798d04fbfdcc23bdb7fee64f3651a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/**
 * @license
 * Copyright 2025 Google LLC
 * SPDX-License-Identifier: Apache-2.0
 */

import { OpenDialogActionReturn, SlashCommand } from './types.js';

export const authCommand: SlashCommand = {
  name: 'auth',
  description: 'change the auth method',
  action: (_context, _args): OpenDialogActionReturn => ({
    type: 'dialog',
    dialog: 'auth',
  }),
};