export function untilSigInt(): Promise { return new Promise((resolve) => { process.once('SIGINT', () => { resolve() }) }) }