Initial commit, basic functionality in place.

This commit is contained in:
Agent
2026-03-11 23:58:39 +00:00
commit 9af3805f87
8 changed files with 6199 additions and 0 deletions

8
preload.js Normal file
View File

@@ -0,0 +1,8 @@
'use strict';
const { contextBridge, ipcRenderer } = require('electron');
contextBridge.exposeInMainWorld('kokoro', {
getConfig: () => ipcRenderer.invoke('get-config'),
saveConfig: (config) => ipcRenderer.invoke('save-config', config),
});