@zap-js/client 0.0.6 → 0.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -302,8 +302,8 @@ export class DevServer extends EventEmitter {
|
|
|
302
302
|
this.log('debug', `IPC server listening on ${this.socketPath}`);
|
|
303
303
|
// Initialize RPC client for bidirectional IPC communication
|
|
304
304
|
// This allows TypeScript route handlers to call Rust functions via rpc.call()
|
|
305
|
-
initRpcClient(this.socketPath);
|
|
306
|
-
this.log('debug', `RPC client initialized on ${this.socketPath}`);
|
|
305
|
+
initRpcClient(this.socketPath + '.rpc');
|
|
306
|
+
this.log('debug', `RPC client initialized on ${this.socketPath}.rpc`);
|
|
307
307
|
// Load and register route handlers
|
|
308
308
|
const routes = await this.loadRouteHandlers(routeTree);
|
|
309
309
|
console.log(`[dev-server] Loaded ${routes.length} route configurations`);
|