export function safeRun(fn: () => Promise) { fn().catch((e: any) => { console.error("Caught error", e.message); // throw e; }); }