slug-code/commands/hooks/index.ts
2026-03-31 12:46:52 -04:00

11 lines
260 B
TypeScript

import type { Command } from '../../commands.js'
const hooks = {
type: 'local-jsx',
name: 'hooks',
description: 'View hook configurations for tool events',
immediate: true,
load: () => import('./hooks.js'),
} satisfies Command
export default hooks