import lunary from 'lunary'
async function handler(event, context) {
  // do something
  // your function logic...
  // flush the queue (make sure to await)
  await lunary.flush()
  return {
    statusCode: 200,
    body: JSON.stringify({ message: 'Hello World' })
  }
}