()
| 72 | * registration (e.g., killing a pane by its stored backendType). |
| 73 | */ |
| 74 | export async function ensureBackendsRegistered(): Promise<void> { |
| 75 | if (backendsRegistered) return |
| 76 | await import('./TmuxBackend.js') |
| 77 | await import('./ITermBackend.js') |
| 78 | backendsRegistered = true |
| 79 | } |
| 80 | |
| 81 | /** |
| 82 | * Registers the TmuxBackend class with the registry. |
no outgoing calls
no test coverage detected