Add legacy Electron app
build-winui / winui (push) Has been cancelled

This commit is contained in:
QWQLwToo
2026-06-26 13:29:02 +08:00
parent 079ee4eaeb
commit 46a3674381
115 changed files with 55280 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
// src/js/core/index.js
/**
* [重构] 核心模块统一导出
* 提供完整的应用框架系统
*/
export { default as Application } from './Application.js';
export { default as ToolFramework } from './ToolFramework.js';
export { default as EventBus } from './EventBus.js';
export { default as ServiceContainer } from './ServiceContainer.js';
export { default as ExecutionManager } from './ExecutionManager.js';
export { default as PluginSystem } from './PluginSystem.js';
export { default as ApiManager } from './ApiManager.js';
export { default as InitializationSystem } from './InitializationSystem.js';