Files
kintone-helper-extenstion/main.js
2025-10-17 14:39:35 +08:00

23 lines
521 B
JavaScript

/**
* Kintone Helper Extension 主入口点模块
* 协调所有功能模块以增强 Kintone 系统体验
*/
import { addFieldLabel } from './features/add-field-label/main.js';
/**
* 主入口函数:协调并运行所有扩展功能
* @returns {Promise<void>}
*/
export const runKintoneHelper = async () => {
try {
await addFieldLabel();
} catch (error) {
console.error('❌ Kintone Helper Extension execution failed:', error);
throw error;
}
};
// 立即执行主函数
runKintoneHelper();