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