feat(client): persist digital employee snapshots

This commit is contained in:
baiyanyun
2026-06-05 16:27:15 +08:00
parent 15a3285ed5
commit 40151c3902
5 changed files with 251 additions and 63 deletions

View File

@@ -14,6 +14,7 @@ import { registerSandboxHandlers } from "./sandboxHandlers";
import { registerPerfHandlers } from "./perfHandlers";
import { registerGuiServerHandlers } from "./guiServerHandlers";
import { registerI18nHandlers } from "./i18nHandlers";
import { registerDigitalEmployeeHandlers } from "./digitalEmployeeHandlers";
import log from "electron-log";
export function registerAllHandlers(ctx: HandlerContext): void {
@@ -32,6 +33,7 @@ export function registerAllHandlers(ctx: HandlerContext): void {
registerPerfHandlers();
registerGuiServerHandlers();
registerI18nHandlers();
registerDigitalEmployeeHandlers(ctx);
log.info("IPC handlers registered");
}