async function main()

in stress-test/echo.js [22:28]


async function main(args) {
    const msecs = Math.floor((Math.random() * 1000) + 250);
    await sleep(msecs);
    return {
        body: `Hello ${args.name || 'World'}`
    }
}