mirror of
https://github.com/tinyhumansai/openhuman.git
synced 2026-07-30 23:14:37 +00:00
24 lines
892 B
TypeScript
24 lines
892 B
TypeScript
/**
|
|
* Service-backed transport for the boot-check orchestrator.
|
|
*
|
|
* The orchestrator (`app/src/lib/bootCheck/`) keeps all I/O behind a
|
|
* `BootCheckTransport` interface so it can be unit-tested without Tauri.
|
|
* This module is the production implementation: it owns the direct
|
|
* `invoke` and `callCoreRpc` references so IPC stays localized to
|
|
* `app/src/services/` per project conventions.
|
|
*/
|
|
import { invoke } from '@tauri-apps/api/core';
|
|
|
|
import type { BootCheckTransport } from '../lib/bootCheck';
|
|
import { callCoreRpc } from './coreRpcClient';
|
|
|
|
async function callRpc<T>(method: string, params?: Record<string, unknown>): Promise<T> {
|
|
return callCoreRpc<T>({ method, params });
|
|
}
|
|
|
|
async function invokeCmd<T>(cmd: string, args?: Record<string, unknown>): Promise<T> {
|
|
return invoke<T>(cmd, args);
|
|
}
|
|
|
|
export const bootCheckTransport: BootCheckTransport = { callRpc, invokeCmd };
|