import { sendFeishuMessage } from './src/server/feishu.js'; async function test() { try { const result = await sendFeishuMessage({ text: '✅ FlowPilot 后端服务测试消息', receiveId: 'ou_41d14aca8278e605d98e33b1221777e4', receiveIdType: 'open_id', useApp: true, }); console.log('Notification sent:', result); } catch (e) { console.error('Failed to send:', e.message); } } test();