()
| 227 | } |
| 228 | |
| 229 | export async function collectCommandSurfaceInventory(): Promise< |
| 230 | CommandSurfaceEntry[] |
| 231 | > { |
| 232 | const { getBuiltInCommandsForDiagnostics, INTERNAL_ONLY_COMMANDS } = |
| 233 | await import('./commands.js') |
| 234 | return buildCommandSurfaceInventory( |
| 235 | getBuiltInCommandsForDiagnostics(), |
| 236 | INTERNAL_ONLY_COMMANDS, |
| 237 | ) |
| 238 | } |
nothing calls this directly
no test coverage detected