Newer
Older
cortex-hub / CaudeCodeSourceCode / cc-recovered-main / src / commands / hooks / index.ts
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