import { updateAutoAll } from "../generic/update-all"; export async function main(): Promise { try { await updateAutoAll(); } catch(err) { console.error(err); process.exit(1); } } main();