2024-01-26 13:38:28 +00:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
method: 'get',
|
|
|
|
path: '/user',
|
2024-01-26 14:37:47 +00:00
|
|
|
options: {
|
|
|
|
tags: ['api'],
|
|
|
|
},
|
2024-01-26 13:38:28 +00:00
|
|
|
handler: async (request, h) => {
|
|
|
|
|
|
|
|
return { firstName: 'John', lastName: 'Doe'};
|
|
|
|
}
|
|
|
|
};
|