blob: 290c071e4c2b8943c8bf034a4000b1a8d83da50b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/**
* @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();
},
};
|