Refactor version handlers (#90)

refactor version handlers
This commit is contained in:
Will Chen
2025-05-06 10:16:09 -07:00
committed by GitHub
parent a4d3e04996
commit 1fcb58a141
3 changed files with 224 additions and 205 deletions

View File

@@ -13,7 +13,7 @@ import { registerLocalModelHandlers } from "./handlers/local_model_handlers";
import { registerTokenCountHandlers } from "./handlers/token_count_handlers";
import { registerWindowHandlers } from "./handlers/window_handlers";
import { registerUploadHandlers } from "./handlers/upload_handlers";
import { registerVersionHandlers } from "./handlers/version_handlers";
export function registerIpcHandlers() {
// Register all IPC handlers by category
registerAppHandlers();
@@ -31,4 +31,5 @@ export function registerIpcHandlers() {
registerTokenCountHandlers();
registerWindowHandlers();
registerUploadHandlers();
registerVersionHandlers();
}