module.exports = { method: 'GET', path: '/', handler: async function (request, h) { return { test: 'hello, world' } }, options: { description: 'Test', notes: 'This is an example route', tags: ['api'], auth: false } }