MCPcopy Index your code
hub / github.com/codeaashu/claude-code / createITermBackend

Function createITermBackend

src/utils/swarm/backends/registry.ts:119–126  ·  view source on GitHub ↗

* Creates an ITermBackend instance. * Throws if ITermBackend hasn't been registered.

()

Source from the content-addressed store, hash-verified

117 * Throws if ITermBackend hasn't been registered.
118 */
119function createITermBackend(): PaneBackend {
120 if (!ITermBackendClass) {
121 throw new Error(
122 'ITermBackend not registered. Import ITermBackend.ts before using the registry.',
123 )
124 }
125 return new ITermBackendClass()
126}
127
128/**
129 * Detection priority flow:

Callers 2

detectAndGetBackendFunction · 0.85
getBackendByTypeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected