mirror of
https://github.com/stablyai/orca.git
synced 2026-09-22 08:02:28 +00:00
15 lines
522 B
TypeScript
15 lines
522 B
TypeScript
// Why: the runtime client used to live here as a single file. It was split
|
|
// into ./runtime/{types,metadata,transport,status,launch,client}.ts so each
|
|
// concern can be tested in isolation. This barrel preserves the original
|
|
// import surface so call sites (src/cli/index.ts, tests) remain unchanged.
|
|
export {
|
|
RuntimeClient,
|
|
RuntimeClientError,
|
|
RuntimeRpcFailureError,
|
|
serveOrcaApp,
|
|
getDefaultUserDataPath,
|
|
type RuntimeRpcFailure,
|
|
type RuntimeRpcResponse,
|
|
type RuntimeRpcSuccess
|
|
} from './runtime/index'
|