You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

base.js 280B

12345678910111213
  1. module.exports = {
  2. method: 'GET',
  3. path: '/',
  4. handler: async function (request, h) {
  5. return { test: 'hello, world' }
  6. },
  7. options: {
  8. description: 'Test',
  9. notes: 'This is an example route',
  10. tags: ['api'],
  11. auth: false
  12. }
  13. }