()
| 30 | } |
| 31 | |
| 32 | export function formatSlashCommandHelp() { |
| 33 | return slashCommands |
| 34 | .map((command) => `${command.name} - ${command.summary}`) |
| 35 | .join(" ") |
| 36 | } |
| 37 | |
| 38 | export function getSlashCommandItems(query: string) { |
| 39 | const normalizedQuery = query.trim().toLowerCase() |
nothing calls this directly
no outgoing calls
no test coverage detected