// This function is everything you need to build a Lambda-based app with Begin
exports.handler = async function http(req) {
  return {
    type: 'text/html; charset=utf8',
    body: `<h1 class="center-text">Hello world!</h1>`
  }
}