Migrate /corgi (#4419)

This commit is contained in:
Abhi
2025-07-17 19:40:36 -04:00
committed by GitHub
parent 5df6c9fb66
commit ca07b5b0c4
9 changed files with 76 additions and 138 deletions

View File

@@ -0,0 +1,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();
},
};