mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-04-11 22:00:41 -07:00
16 lines
311 B
TypeScript
16 lines
311 B
TypeScript
|
|
/**
|
||
|
|
* @license
|
||
|
|
* Copyright 2025 Google LLC
|
||
|
|
* SPDX-License-Identifier: Apache-2.0
|
||
|
|
*/
|
||
|
|
|
||
|
|
import { type SlashCommand } from './types.js';
|
||
|
|
|
||
|
|
export const corgiCommand: SlashCommand = {
|
||
|
|
name: 'corgi',
|
||
|
|
description: 'Toggles corgi mode.',
|
||
|
|
action: (context, _args) => {
|
||
|
|
context.ui.toggleCorgiMode();
|
||
|
|
},
|
||
|
|
};
|