mirror of
https://github.com/QwenLM/qwen-code.git
synced 2025-12-20 08:47:44 +00:00
17 lines
354 B
TypeScript
17 lines
354 B
TypeScript
/**
|
|
* @license
|
|
* Copyright 2025 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import { CommandKind, type SlashCommand } from './types.js';
|
|
|
|
export const corgiCommand: SlashCommand = {
|
|
name: 'corgi',
|
|
description: 'Toggles corgi mode.',
|
|
kind: CommandKind.BUILT_IN,
|
|
action: (context, _args) => {
|
|
context.ui.toggleCorgiMode();
|
|
},
|
|
};
|